]> git.pld-linux.org Git - packages/VirtualBox.git/blobdiff - vboxautostart.init
- rel 2 (libvpx 1.14)
[packages/VirtualBox.git] / vboxautostart.init
index 5e5c1817d4f7fe1de7359d4959b9f2a8229f32ec..f9ce4cb02a2f4e207579fc333d451dc913858ec5 100755 (executable)
@@ -21,6 +21,7 @@ VBOXAUTOSTART=@INSTALL_DIR@/VBoxAutostart
 start_daemon() {
        local user="$1"
        shift
+       show "VMs for user '%s'" "$user"
        daemon --user $user "$@"
 }
 
@@ -34,15 +35,16 @@ start() {
        [ -z "$VBOXAUTOSTART_DB" ] && exit 0
        [ -z "$VBOXAUTOSTART_CONFIG" ] && exit 0
 
-       msg_starting "VirtualBox VMs configured for autostart"
+       msg_starting "VirtualBox VMs configured for autostart"; busy; echo
 
-       local user PARAMS="--background --start --config $VBOXAUTOSTART_CONFIG"
+       local file user PARAMS="--background --start --config $VBOXAUTOSTART_CONFIG"
 
        # prevent inheriting this setting to VBoxSVC
        unset VBOX_RELEASE_LOG_DEST
 
-       for user in `ls $VBOXAUTOSTART_DB/*.start 2>/dev/null`; do
-               user=$(basename $user | sed -ne "s/\(.*\).start/\1/p")
+       for file in $VBOXAUTOSTART_DB/*.start; do
+               test -f "$file" || continue
+               user=${file##*/}; user=${user%.start}
                start_daemon $user $VBOXAUTOSTART $PARAMS
        done
 
@@ -59,15 +61,16 @@ stop() {
        [ -z "$VBOXAUTOSTART_CONFIG" ] && exit 0
 
        # Stop daemons.
-       msg_stopping "VirtualBox Autostart"
+       msg_stopping "VirtualBox Autostart"; busy; echo
 
-       local user PARAMS="--stop --config $VBOXAUTOSTART_CONFIG"
+       local file user PARAMS="--stop --config $VBOXAUTOSTART_CONFIG"
 
        # prevent inheriting this setting to VBoxSVC
        unset VBOX_RELEASE_LOG_DEST
 
-       for user in `ls $VBOXAUTOSTART_DB/*.stop 2>/dev/null`; do
-               user=$(basename $user | sed -ne "s/\(.*\).stop/\1/p")
+       for file in $VBOXAUTOSTART_DB/*.stop; do
+               test -f "$file" || continue
+               user=${file##*/}; user=${user%.stop}
                start_daemon $user $VBOXAUTOSTART $PARAMS
        done
 
This page took 0.028788 seconds and 4 git commands to generate.