timeout(1): Add -v/--verbose option to show diagnosis infoThe -v/--verbose option enables this utility to show diagnosisinfo to stderr about any signal sent on timeout.This implementation refers
timeout(1): Add -v/--verbose option to show diagnosis infoThe -v/--verbose option enables this utility to show diagnosisinfo to stderr about any signal sent on timeout.This implementation refers to GNU coreutils's timeout(1).Reviewed by: bapt, Alexander Ziaee (manpages)Approved by: bapt (src)Obtained from: DragonFlyBSDMFC after: 1 weekDifferential Revision: https://reviews.freebsd.org/D48225
show more ...
timeout(1): Some minor tweaks and improvements- Define exit status and macros and use them- Improve the second kill logic by setting 'do_second_kill = false' after configuring the second kill-
timeout(1): Some minor tweaks and improvements- Define exit status and macros and use them- Improve the second kill logic by setting 'do_second_kill = false' after configuring the second kill- Minor style tweaks- Reorder options in the man page, as well as the usage help- Reorder the exit status in the man page- Enhance the HISTORY section in the man page (obtained from NetBSD)Reviewed by: bapt, Alexander Ziaee (manpages)Approved by: bapt (src)Obtained from: DragonFlyBSDMFC after: 1 weekDifferential Revision: https://reviews.freebsd.org/D47866
timeout(1): Update STANDARDS sectionUpdate the STANDARDS section for timeout(1) toPOSIX 1003.1-2024.Update mandoc to be able to render thenew POSIX macro.Reviewed by: bapt, bcrApproved by: b
timeout(1): Update STANDARDS sectionUpdate the STANDARDS section for timeout(1) toPOSIX 1003.1-2024.Update mandoc to be able to render thenew POSIX macro.Reviewed by: bapt, bcrApproved by: baptObtained from: OpenBSDMFC after: 2 weeksDifferential Revision: https://reviews.freebsd.org/D45691
Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
bin/timeout: remove unreachable break after usage()Signed-off-by: rilysh <nightquick@proton.me>Reviewed by: impPull Request: https://github.com/freebsd/freebsd-src/pull/872
timeout_test.sh: Fix typoSigned-off-by: Elyes Haouas <ehaouas@noos.fr>Reviewed by: impPull Request: https://github.com/freebsd/freebsd-src/pull/906
Remove $FreeBSD$: two-line nroff patternRemove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
timeout(1): link to related manual pagesReviewed by: impPull Request: https://github.com/freebsd/freebsd-src/pull/783
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of BSD-2-Clause.Discussed with: pfgMFC After: 3 daysSponsored by: Netflix
timeout: Move from /usr/bin to /bintimeout(1) is used by /etc/rc.d/zfskeys. Unfortunately, havingtimeout(1) installed in /usr/bin causes problems when /usr is anencrypted ZFS partition.Implemen
timeout: Move from /usr/bin to /bintimeout(1) is used by /etc/rc.d/zfskeys. Unfortunately, havingtimeout(1) installed in /usr/bin causes problems when /usr is anencrypted ZFS partition.Implementing timeout(1) in sh(1) is not trivial. A more elegant solutionis to move timeout(1) to /bin so that it is available to early servicesin the boot process.PR: 265221Reviewed by: allanjude, des, impApproved by: allanjude, des, impReported by: Ivan <r4@sovserv.ru>Fixes: 33ff39796ffe Add zfskeys rc.d script for auto-loading encryption keysMFC after: 1 weekRelnotes: yesSponsored by: Modirum MDPaySponsored by: Klara Inc.Differential Revision: https://reviews.freebsd.org/D38344