1 | #!/sbin/sh
|
---|
2 | # $Id: smf-vboxwebsrv.sh 36520 2011-04-04 11:50:01Z vboxsync $
|
---|
3 |
|
---|
4 | # Copyright (C) 2008-2011 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-vboxwebsrv method
|
---|
17 | #
|
---|
18 | # Argument is the method name (start, stop, ...)
|
---|
19 |
|
---|
20 | . /lib/svc/share/smf_include.sh
|
---|
21 |
|
---|
22 | VW_OPT="$1"
|
---|
23 | VW_EXIT=0
|
---|
24 |
|
---|
25 | case $VW_OPT in
|
---|
26 | start)
|
---|
27 | if [ ! -x /opt/VirtualBox/vboxwebsrv ]; then
|
---|
28 | echo "ERROR: /opt/VirtualBox/vboxwebsrv does not exist."
|
---|
29 | return $SMF_EXIT_ERR_CONFIG
|
---|
30 | fi
|
---|
31 |
|
---|
32 | if [ ! -f /opt/VirtualBox/vboxwebsrv ]; then
|
---|
33 | echo "ERROR: /opt/VirtualBox/vboxwebsrv does not exist."
|
---|
34 | return $SMF_EXIT_ERR_CONFIG
|
---|
35 | fi
|
---|
36 |
|
---|
37 | # Get svc configuration
|
---|
38 | VW_USER=`/usr/bin/svcprop -p config/user $SMF_FMRI 2>/dev/null`
|
---|
39 | [ $? != 0 ] && VW_USER=
|
---|
40 | VW_HOST=`/usr/bin/svcprop -p config/host $SMF_FMRI 2>/dev/null`
|
---|
41 | [ $? != 0 ] && VW_HOST=
|
---|
42 | VW_PORT=`/usr/bin/svcprop -p config/port $SMF_FMRI 2>/dev/null`
|
---|
43 | [ $? != 0 ] && VW_PORT=
|
---|
44 | VW_TIMEOUT=`/usr/bin/svcprop -p config/timeout $SMF_FMRI 2>/dev/null`
|
---|
45 | [ $? != 0 ] && VW_TIMEOUT=
|
---|
46 | VW_CHECK_INTERVAL=`/usr/bin/svcprop -p config/checkinterval $SMF_FMRI 2>/dev/null`
|
---|
47 | [ $? != 0 ] && VW_CHECK_INTERVAL=
|
---|
48 | VW_KEEPALIVE=`/usr/bin/svcprop -p config/keepalive $SMF_FMRI 2>/dev/null`
|
---|
49 | [ $? != 0 ] && VW_KEEPALIVE=
|
---|
50 | VW_ROTATE=`/usr/bin/svcprop -p config/logrotate $SMF_FMRI 2>/dev/null`
|
---|
51 | [ $? != 0 ] && VW_ROTATE=
|
---|
52 | VW_LOGSIZE=`/usr/bin/svcprop -p config/logsize $SMF_FMRI 2>/dev/null`
|
---|
53 | [ $? != 0 ] && VW_LOGSIZE=
|
---|
54 | VW_LOGINTERVAL=`/usr/bin/svcprop -p config/loginterval $SMF_FMRI 2>/dev/null`
|
---|
55 | [ $? != 0 ] && VW_LOGINTERVAL=
|
---|
56 |
|
---|
57 | # Provide sensible defaults
|
---|
58 | [ -z "$VW_USER" ] && VW_USER=root
|
---|
59 | [ -z "$VW_HOST" ] && VW_HOST=localhost
|
---|
60 | [ -z "$VW_PORT" -o "$VW_PORT" -eq 0 ] && VW_PORT=18083
|
---|
61 | [ -z "$VW_TIMEOUT" ] && VW_TIMEOUT=20
|
---|
62 | [ -z "$VW_CHECK_INTERVAL" ] && VW_CHECK_INTERVAL=5
|
---|
63 | [ -z "$VW_KEEPALIVE" ] && VW_KEEPALIVE=100
|
---|
64 | [ -z "$VW_ROTATE" ] && VW_ROTATE=10
|
---|
65 | [ -z "$VW_LOGSIZE" ] && VW_LOGSIZE=104857600
|
---|
66 | [ -z "$VW_LOGINTERVAL" ] && VW_LOGINTERVAL=604800
|
---|
67 | exec su - "$VW_USER" -c "/opt/VirtualBox/vboxwebsrv --background --host \"$VW_HOST\" --port \"$VW_PORT\" --timeout \"$VW_TIMEOUT\" --check-interval \"$VW_CHECK_INTERVAL\" --keepalive \"$VW_KEEPALIVE\" --logrotate \"$VW_ROTATE\" --logsize \"$VW_LOGSIZE\" --loginterval \"$VW_LOGINTERVAL\""
|
---|
68 |
|
---|
69 | VW_EXIT=$?
|
---|
70 | if [ $VW_EXIT != 0 ]; then
|
---|
71 | echo "vboxwebsrv failed with $VW_EXIT."
|
---|
72 | VW_EXIT=1
|
---|
73 | fi
|
---|
74 | ;;
|
---|
75 | stop)
|
---|
76 | # Kill service contract
|
---|
77 | smf_kill_contract $2 TERM 1
|
---|
78 | ;;
|
---|
79 | *)
|
---|
80 | VW_EXIT=$SMF_EXIT_ERR_CONFIG
|
---|
81 | ;;
|
---|
82 | esac
|
---|
83 |
|
---|
84 | exit $VW_EXIT
|
---|