From 554f5aa526266057672740e22af0a75cc32bddd5 Mon Sep 17 00:00:00 2001 From: Christos Margiolis Date: Sun, 19 Apr 2026 12:40:31 +0200 Subject: [PATCH] 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 9387a49051d..5ae1b2bee93 100755 --- a/usr.sbin/service/service.sh +++ b/usr.sbin/service/service.sh @@ -39,7 +39,7 @@ usage () { echo "${0##*/} [-j ] [-dqv] [-E var=value] 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'