aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristos Margiolis <christos@FreeBSD.org>2026-04-19 10:40:31 +0000
committerChristos Margiolis <christos@FreeBSD.org>2026-04-19 10:40:31 +0000
commit554f5aa526266057672740e22af0a75cc32bddd5 (patch)
treeb95c1d23110e57d4b32303637050c978525e8dc1
parent6323e2be6102e2a152b4420db272f7e880017cf0 (diff)
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
-rwxr-xr-xusr.sbin/service/service.sh2
1 files changed, 1 insertions, 1 deletions
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'