VirtualBox

source: vbox/trunk/debian/vboxdrv.init.in@ 8800

Last change on this file since 8800 was 8462, checked in by vboxsync, 16 years ago

sync debian

File size: 8.0 KB
Line 
1#! /bin/sh
2#
3# Sun xVM VirtualBox
4# Linux kernel module init script
5#
6
7#
8# Copyright (C) 2006-2007 Sun Microsystems, Inc.
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18
19# chkconfig: 35 30 60
20# description: VirtualBox Linux kernel module
21#
22### BEGIN INIT INFO
23# Provides: vboxdrv
24# Required-Start: $syslog
25# Required-Stop:
26# Default-Start: 3 5
27# Default-Stop:
28# Short-Description: VirtualBox Linux kernel module
29### END INIT INFO
30
31PATH=/sbin:/bin:/usr/sbin:/usr/bin:$PATH
32DEVICE=/dev/vboxdrv
33MODNAME=vboxdrv
34GROUPNAME=vboxusers
35LOG="/var/log/vbox-install.log"
36NOLSB=%NOLSB%
37
38[ -f /lib/lsb/init-functions ] || NOLSB=yes
39[ -f /etc/vbox/vbox.cfg ] && . /etc/vbox/vbox.cfg
40
41if [ -n "$INSTALL_DIR" ]; then
42 VBOXMANAGE="$INSTALL_DIR/VBoxManage"
43 BUILDINTMP="$INSTALL_DIR/src/build_in_tmp"
44else
45 VBOXMANAGE="/usr/lib/virtualbox-ose/VBoxManage"
46 BUILDINTMP="/usr/share/virtualbox-ose/src/build_in_tmp"
47fi
48
49if [ -n "$NOLSB" ]; then
50 if [ -f /etc/redhat-release ]; then
51 system=redhat
52 elif [ -f /etc/SuSE-release ]; then
53 system=suse
54 elif [ -f /etc/gentoo-release ]; then
55 system=gentoo
56 fi
57fi
58
59[ -r /etc/default/virtualbox-ose ] && . /etc/default/virtualbox-ose
60
61if [ -z "$NOLSB" ]; then
62 . /lib/lsb/init-functions
63 fail_msg() {
64 echo ""
65 log_failure_msg "$1"
66 }
67 succ_msg() {
68 log_success_msg " done."
69 }
70 begin_msg() {
71 log_daemon_msg "$@"
72 }
73else
74 if [ "$system" = "redhat" ]; then
75 . /etc/init.d/functions
76 fail_msg() {
77 echo -n " "
78 echo_failure
79 echo
80 echo " ($1)"
81 }
82 succ_msg() {
83 echo -n " "
84 echo_success
85 echo
86 }
87 elif [ "$system" = "suse" ]; then
88 . /etc/rc.status
89 fail_msg() {
90 rc_failed 1
91 rc_status -v
92 echo " ($1)"
93 }
94 succ_msg() {
95 rc_reset
96 rc_status -v
97 }
98 elif [ "$system" = "gentoo" ]; then
99 . /sbin/functions.sh
100 fail_msg() {
101 eerror "$1"
102 }
103 succ_msg() {
104 eend "$?"
105 }
106 begin_msg() {
107 ebegin "$1"
108 }
109 if [ "`which $0`" = "/sbin/rc" ]; then
110 shift
111 fi
112 else
113 fail_msg() {
114 echo " ...failed!"
115 echo " ($1)"
116 }
117 succ_msg() {
118 echo " ...done."
119 }
120 fi
121 if [ "$system" != "gentoo" ]; then
122 begin_msg() {
123 [ -z "${1:-}" ] && return 1
124 if [ -z "${2:-}" ]; then
125 echo -n "$1"
126 else
127 echo -n "$1: $2"
128 fi
129 }
130 fi
131fi
132
133failure()
134{
135 fail_msg "$1"
136 exit 0
137}
138
139running()
140{
141 lsmod | grep -q "$MODNAME[^_-]"
142}
143
144start()
145{
146 begin_msg "Starting VirtualBox kernel module"
147 if ! running; then
148 if ! find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|grep -q vboxdrv; then
149 failure "No suitable module for running kernel found"
150 fi
151 if ! rm -f $DEVICE; then
152 failure "Cannot remove $DEVICE"
153 fi
154 if ! modprobe $MODNAME > /dev/null 2>&1; then
155 failure "modprobe $MODNAME failed. Please use 'dmesg' to find out why"
156 fi
157 sleep .2
158 fi
159 # ensure the character special exists
160 if [ ! -c $DEVICE ]; then
161 MAJOR=`sed -n 's;\([0-9]\+\) vboxdrv;\1;p' /proc/devices`
162 if [ ! -z "$MAJOR" ]; then
163 MINOR=0
164 else
165 MINOR=`sed -n 's;\([0-9]\+\) vboxdrv;\1;p' /proc/misc`
166 if [ ! -z "$MINOR" ]; then
167 MAJOR=10
168 fi
169 fi
170 if [ -z "$MAJOR" ]; then
171 rmmod $MODNAME 2>/dev/null
172 failure "Cannot locate the VirtualBox device"
173 fi
174 if ! mknod -m 0660 $DEVICE c $MAJOR $MINOR 2>/dev/null; then
175 rmmod $MODNAME 2>/dev/null
176 failure "Cannot create device $DEVICE with major $MAJOR and minor $MINOR"
177 fi
178 fi
179 # ensure permissions
180 if ! chown :$GROUPNAME $DEVICE 2>/dev/null; then
181 rmmod $MODNAME 2>/dev/null
182 failure "Cannot change owner $GROUPNAME for device $DEVICE"
183 fi
184 succ_msg
185}
186
187stop()
188{
189 begin_msg "Stopping VirtualBox kernel module"
190 if running; then
191 if ! rmmod $MODNAME 2>/dev/null; then
192 failure "Cannot unload module $MODNAME"
193 fi
194 if ! rm -f $DEVICE; then
195 failure "Cannot unlink $DEVICE"
196 fi
197 fi
198 succ_msg
199}
200
201# enter the following variables in /etc/default/virtualbox-ose:
202# SHUTDOWN_USERS="foo bar"
203# check for running VMs of user foo and user bar
204# SHUTDOWN=poweroff
205# SHUTDOWN=acpibutton
206# SHUTDOWN=savestate
207# select one of these shutdown methods for running VMs
208stop_vms()
209{
210 wait=0
211 for i in $SHUTDOWN_USERS; do
212 # don't create the ipcd directory with wrong permissions!
213 if [ -d /tmp/.vbox-$i-ipc ]; then
214 export VBOX_IPC_SOCKETID="$i"
215 VMS=`$VBOXMANAGE -nologo list runningvms 2>/dev/null`
216 if [ -n "$VMS" ]; then
217 if [ "$SHUTDOWN" = "poweroff" ]; then
218 begin_msg "Powering off remaining VMs"
219 for v in $VMS; do
220 $VBOXMANAGE -nologo controlvm $v poweroff
221 done
222 succ_msg
223 elif [ "$SHUTDOWN" = "acpibutton" ]; then
224 begin_msg "Sending ACPI power button event to remaining VMs"
225 for v in $VMS; do
226 $VBOXMANAGE -nologo controlvm $v acpipowerbutton
227 wait=30
228 done
229 succ_msg
230 elif [ "$SHUTDOWN" = "savestate" ]; then
231 begin_msg "Saving state of remaining VMs"
232 for v in $VMS; do
233 $VBOXMANAGE -nologo controlvm $v savestate
234 done
235 succ_msg
236 fi
237 fi
238 fi
239 done
240 # wait for some seconds when doing ACPI shutdown
241 if [ "$wait" -ne 0 ]; then
242 begin_msg "Waiting for $wait seconds for VM shutdown"
243 sleep $wait
244 succ_msg
245 fi
246}
247
248setup()
249{
250 stop
251 if find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|grep -q vboxdrv; then
252 begin_msg "Removing old VirtualBox kernel module"
253 find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|xargs rm -f 2>/dev/null
254 succ_msg
255 fi
256 begin_msg "Recompiling VirtualBox kernel module"
257 if ! $BUILDINTMP install > $LOG 2>&1; then
258 failure "Look at $LOG to find out what went wrong"
259 fi
260 succ_msg
261 start
262}
263
264dmnstatus()
265{
266 if running; then
267 echo "VirtualBox kernel module is loaded."
268 for i in $SHUTDOWN_USERS; do
269 # don't create the ipcd directory with wrong permissions!
270 if [ -d /tmp/.vbox-$i-ipc ]; then
271 export VBOX_IPC_SOCKETID="$i"
272 VMS=`$VBOXMANAGE -nologo list runningvms 2>/dev/null`
273 if [ -n "$VMS" ]; then
274 echo "The following VMs are currently running:"
275 for v in $VMS; do
276 echo " $v"
277 done
278 fi
279 fi
280 done
281 else
282 echo "VirtualBox kernel module is not loaded."
283 fi
284}
285
286case "$1" in
287start)
288 start
289 ;;
290stop)
291 stop_vms
292 stop
293 ;;
294stop_vms)
295 stop_vms
296 ;;
297restart)
298 stop && start
299 ;;
300force-reload)
301 stop
302 start
303 ;;
304setup)
305 setup
306 ;;
307status)
308 dmnstatus
309 ;;
310*)
311 echo "Usage: $0 {start|stop|stop_vms|restart|force-reload|status|setup}"
312 exit 1
313esac
314
315exit 0
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