Module Name: src
Committed By: lukem
Date: Sun Apr 25 06:21:37 UTC 2021
Modified Files:
src/usr.sbin/postinstall: postinstall.in
Log Message:
postinstall: re-align list output
To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/usr.sbin/postinstall/postinstall.in
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/postinstall/postinstall.in
diff -u src/usr.sbin/postinstall/postinstall.in:1.37 src/usr.sbin/postinstall/postinstall.in:1.38
--- src/usr.sbin/postinstall/postinstall.in:1.37 Sun Apr 25 01:44:55 2021
+++ src/usr.sbin/postinstall/postinstall.in Sun Apr 25 06:21:37 2021
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: postinstall.in,v 1.37 2021/04/25 01:44:55 lukem Exp $
+# $NetBSD: postinstall.in,v 1.38 2021/04/25 06:21:37 lukem Exp $
#
# Copyright (c) 2002-2021 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -2576,18 +2576,18 @@ _USAGE_
list()
{
echo "Default set of items (to apply if no items are provided by user):"
- echo " Item Description"
- echo " ---- -----------"
+ echo " Item Description"
+ echo " ---- -----------"
for i in ${defaultitems}; do
eval desc=\"\${desc_${i}}\"
- printf " %-12s %s\n" "${i}" "${desc}"
+ printf " %-20s %s\n" "${i}" "${desc}"
done
echo "Items disabled by default (must be requested explicitly):"
- echo " Item Description"
- echo " ---- -----------"
+ echo " Item Description"
+ echo " ---- -----------"
for i in ${otheritems}; do
eval desc=\"\${desc_${i}}\"
- printf " %-12s %s\n" "${i}" "${desc}"
+ printf " %-20s %s\n" "${i}" "${desc}"
done
}