]> git.pld-linux.org Git - packages/util-vserver.git/blobdiff - vrootdevices.init
- compat header also not needed
[packages/util-vserver.git] / vrootdevices.init
index 135800d55007abc84e1a646df174f45dff9ee9e8..3e85bc9500d67973ab02772d68792b8127e962d5 100644 (file)
@@ -42,8 +42,7 @@ remove_vroot()
        done
 }
 
-case "$1" in
-  start|reload)
+start() {
        if [ ! -f /var/lock/subsys/vrootdevices ]; then
                msg_starting vrootdevices
                ok
@@ -52,9 +51,9 @@ case "$1" in
        else
                msg_already_running vrootdevices
        fi
+}
 
-       ;;
-  stop)
+stop() {
        if [ -f /var/lock/subsys/vrootdevices ]; then
                msg_stopping vrootdevices
                ok
@@ -63,27 +62,26 @@ case "$1" in
        else
                msg_not_running vrootdevices
        fi
+}
+
+case "$1" in
+  start|reload)
+       start
+       ;;
+  stop)
+       stop
        ;;
   status)
-       ID=`id -u`
-       if [ $ID -eq 0 ]; then
-               echo "There is no way to tell"
-       else
-               # don't remove the space at the end!!!
-               nls "You need to be root to use this command ! "
-       fi
+       echo "There is no way to tell"
        ;;
   restart|force-reload)
-       $0 stop
-       $0 start
+       stop
+       start
        ;;
   *)
-       echo "Usage: $0 {start|stop|restart|reload|force-reload|status}"
+       msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
        exit 3
        ;;
 esac
 
 exit $RETVAL
-
-# This must be last line !
-# vi:syntax=sh
This page took 0.079493 seconds and 4 git commands to generate.