VirtualBox

source: vbox/trunk/src/VBox/Installer/solaris/smf-vboxautostart.sh@ 43656

Last change on this file since 43656 was 43656, checked in by vboxsync, 12 years ago

Autostart/stop: Further work on the stop part

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1#!/sbin/sh
2# $Id: smf-vboxautostart.sh 43656 2012-10-16 15:18:28Z vboxsync $
3
4# Copyright (C) 2012 Oracle Corporation
5#
6# This file is part of VirtualBox Open Source Edition (OSE), as
7# available from http://www.virtualbox.org. This file is free software;
8# you can redistribute it and/or modify it under the terms of the GNU
9# General Public License (GPL) as published by the Free Software
10# Foundation, in version 2 as it comes in the "COPYING" file of the
11# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
12# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
13#
14
15#
16# smf-vboxautostart method
17#
18# Argument is the method name (start, stop, ...)
19
20. /lib/svc/share/smf_include.sh
21
22VW_OPT="$1"
23VW_EXIT=0
24
25case $VW_OPT in
26 start)
27 if [ ! -x /opt/VirtualBox/VBoxAutostart ]; then
28 echo "ERROR: /opt/VirtualBox/VBoxAutostart does not exist."
29 return $SMF_EXIT_ERR_CONFIG
30 fi
31
32 if [ ! -f /opt/VirtualBox/VBoxAutostart ]; then
33 echo "ERROR: /opt/VirtualBox/VBoxAutostart does not exist."
34 return $SMF_EXIT_ERR_CONFIG
35 fi
36
37 # Get svc configuration
38 VW_CONFIG=`/usr/bin/svcprop -p config/config $SMF_FMRI 2>/dev/null`
39 [ $? != 0 ] && VW_CONFIG=
40 VW_ROTATE=`/usr/bin/svcprop -p config/logrotate $SMF_FMRI 2>/dev/null`
41 [ $? != 0 ] && VW_ROTATE=
42 VW_LOGSIZE=`/usr/bin/svcprop -p config/logsize $SMF_FMRI 2>/dev/null`
43 [ $? != 0 ] && VW_LOGSIZE=
44 VW_LOGINTERVAL=`/usr/bin/svcprop -p config/loginterval $SMF_FMRI 2>/dev/null`
45 [ $? != 0 ] && VW_LOGINTERVAL=
46
47 # Provide sensible defaults
48 [ -z "$VW_CONFIG" ] && VW_CONFIG=/etc/vbox/autostart.cfg
49 [ -z "$VW_ROTATE" ] && VW_ROTATE=10
50 [ -z "$VW_LOGSIZE" ] && VW_LOGSIZE=104857600
51 [ -z "$VW_LOGINTERVAL" ] && VW_LOGINTERVAL=86400
52
53 # Get all users
54 for VW_USER in `logins -g staff`
55 do
56 exec su - "$VW_USER" -c "/opt/VirtualBox/VBoxAutostart --background --start --config \"$VW_CONFIG\" --logrotate \"$VW_ROTATE\" --logsize \"$VW_LOGSIZE\" --loginterval \"$VW_LOGINTERVAL\""
57
58 VW_EXIT=$?
59 if [ $VW_EXIT != 0 ]; then
60 echo "VBoxAutostart failed with $VW_EXIT."
61 VW_EXIT=1
62 break
63 fi
64 done
65 ;;
66 stop)
67 if [ ! -x /opt/VirtualBox/VBoxAutostart ]; then
68 echo "ERROR: /opt/VirtualBox/VBoxAutostart does not exist."
69 return $SMF_EXIT_ERR_CONFIG
70 fi
71
72 if [ ! -f /opt/VirtualBox/VBoxAutostart ]; then
73 echo "ERROR: /opt/VirtualBox/VBoxAutostart does not exist."
74 return $SMF_EXIT_ERR_CONFIG
75 fi
76
77 # Get svc configuration
78 VW_CONFIG=`/usr/bin/svcprop -p config/config $SMF_FMRI 2>/dev/null`
79 [ $? != 0 ] && VW_CONFIG=
80 VW_ROTATE=`/usr/bin/svcprop -p config/logrotate $SMF_FMRI 2>/dev/null`
81 [ $? != 0 ] && VW_ROTATE=
82 VW_LOGSIZE=`/usr/bin/svcprop -p config/logsize $SMF_FMRI 2>/dev/null`
83 [ $? != 0 ] && VW_LOGSIZE=
84 VW_LOGINTERVAL=`/usr/bin/svcprop -p config/loginterval $SMF_FMRI 2>/dev/null`
85 [ $? != 0 ] && VW_LOGINTERVAL=
86
87 # Provide sensible defaults
88 [ -z "$VW_CONFIG" ] && VW_CONFIG=/etc/vbox/autostart.cfg
89 [ -z "$VW_ROTATE" ] && VW_ROTATE=10
90 [ -z "$VW_LOGSIZE" ] && VW_LOGSIZE=104857600
91 [ -z "$VW_LOGINTERVAL" ] && VW_LOGINTERVAL=86400
92
93 # Get all users
94 for VW_USER in `logins -g staff`
95 do
96 exec su - "$VW_USER" -c "/opt/VirtualBox/VBoxAutostart --stop --config \"$VW_CONFIG\" --logrotate \"$VW_ROTATE\" --logsize \"$VW_LOGSIZE\" --loginterval \"$VW_LOGINTERVAL\""
97
98 VW_EXIT=$?
99 if [ $VW_EXIT != 0 ]; then
100 echo "VBoxAutostart failed with $VW_EXIT."
101 VW_EXIT=1
102 break
103 fi
104 done
105 ;;
106 *)
107 VW_EXIT=$SMF_EXIT_ERR_CONFIG
108 ;;
109esac
110
111exit $VW_EXIT
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette