summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--update-rc.d10
1 files changed, 8 insertions, 2 deletions
diff --git a/update-rc.d b/update-rc.d
index ec50d15..5e32902 100644
--- a/update-rc.d
+++ b/update-rc.d
@@ -19,6 +19,7 @@ etcd="/etc/rc"
notreally=0
force=0
dostart=0
+verbose=0
usage()
{
@@ -28,6 +29,7 @@ usage: update-rc.d [-n] [-f] [-r <root>] <basename> remove
update-rc.d [-n] [-r <root>] [-s] <basename> start|stop NN runlvl [runlvl] [...] .
-n: not really
-f: force
+ -v: verbose
-r: alternate root path (default is /)
-s: invoke start methods if appropriate to current runlevel
EOF
@@ -69,7 +71,7 @@ dolink()
lev=`echo $2 | cut -d/ -f1`
nn=`echo $2 | cut -d/ -f2`
fn="${etcd}${lev}.d/${startstop}${nn}${bn}"
- echo " $fn -> ../init.d/$bn"
+ [ $verbose -eq 1 ] && echo " $fn -> ../init.d/$bn"
if [ $notreally -eq 0 ]; then
mkdir -p `dirname $fn`
ln -s ../init.d/$bn $fn
@@ -89,7 +91,7 @@ makelinks()
exit 0
fi
- echo " Adding system startup for $initd/$bn ..."
+ echo " Adding system startup for $initd/$bn."
for i in $startlinks; do
dolink S $i
@@ -105,6 +107,10 @@ while [ $# -gt 0 ]; do
shift
continue
;;
+ -v) verbose=1
+ shift
+ continue
+ ;;
-f) force=1
shift
continue