git: 554f5aa52626 - main - service(8): Replace indentation in usage()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 19 Apr 2026 10:42:42 UTC
The branch main has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=554f5aa526266057672740e22af0a75cc32bddd5
commit 554f5aa526266057672740e22af0a75cc32bddd5
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2026-04-19 10:40:31 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2026-04-19 10:40:31 +0000
service(8): Replace indentation in usage()
The -d option was indented with spaces instead of tabs, and this broke
formatting.
Before:
-d Enable debugging of rc.d scripts
-j Perform actions within the named jail
After:
-d Enable debugging of rc.d scripts
-j Perform actions within the named jail
MFC after: 1 week
---
usr.sbin/service/service.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.sbin/service/service.sh b/usr.sbin/service/service.sh
index 9387a49051d6..5ae1b2bee933 100755
--- a/usr.sbin/service/service.sh
+++ b/usr.sbin/service/service.sh
@@ -39,7 +39,7 @@ usage () {
echo "${0##*/} [-j <jail name or id>] [-dqv] [-E var=value] <rc.d script> start|stop|etc."
echo "${0##*/} -h"
echo ''
- echo "-d Enable debugging of rc.d scripts"
+ echo "-d Enable debugging of rc.d scripts"
echo "-j Perform actions within the named jail"
echo "-E n=val Set variable n to val before executing the rc.d script"
echo '-e Show services that are enabled'