]> git.pld-linux.org Git - packages/VirtualBox.git/blob - VirtualBox.init
- updated
[packages/VirtualBox.git] / VirtualBox.init
1 #!/bin/sh
2 #
3 # virtualbox    VirtualBox virtualizer for x86 hardware
4 #
5 # chkconfig:    345 84 25
6 #
7 # description:  InnoTek VirtualBox is a general-purpose full virtualizer for x86 
8 #               hardware. Targeted at server, desktop and embedded use.
9 #
10 # $Id$
11
12 # Source function library
13 . /etc/rc.d/init.d/functions
14
15 VBOX_DEVICE="/dev/vboxdrv"
16 VBOX_MODULE="vboxdrv"
17
18 # Get service config - may override defaults
19 [ -f /etc/sysconfig/virtualbox ] && . /etc/sysconfig/virtualbox
20
21 start() {
22         modprobe -s $VBOX_MODULE
23         # set proper /dev/vboxdrv for systems with static dev
24         if ! [ -d /dev/.udev/ ]; then
25                 show "Setting $VBOX_DEVICE entry"
26                 busy
27                 rm -f $VBOX_DEVICE
28                 VBOX_MAJOR=$(awk '$2 == "vboxdrv" {print $1}' /proc/devices)
29                 if [ -n "$VBOX_MAJOR" ]; then
30                         VBOX_MINOR=0
31                 else
32                         VBOX_MINOR=$(awk '$2 == "vboxdrv" {print $1}' /proc/misc)
33                         if [ -n "$VBOX_MINOR" ]; then
34                                 VBOX_MAJOR=$(awk '$2 == "misc" {print $1}' /proc/devices)
35                         fi
36                 fi
37                 if [ -z "$VBOX_MAJOR" ]; then
38                         /sbin/rmmod $VBOX_MODULE
39                         fail
40                 elif ! mknod -m 0660 $VBOX_DEVICE c $VBOX_MAJOR $VBOX_MINOR; then
41                         rmmod $VBOX_MODNAME
42                         fail
43                 elif ! chown root:vbox $VBOX_DEVICE; then
44                         fail
45                 else
46                         ok
47                 fi
48         fi
49 }
50
51 stop() {
52         # NOTE: rmmod will wait if device is in use, so automatic rmmod probably not the best idea
53         /sbin/rmmod $VBOX_MODULE
54 }
55
56 RETVAL=0
57 # See how we were called.
58 case "$1" in
59   start)
60         start
61         ;;
62   stop)
63         stop
64         ;;
65   restart)
66         stop
67         start
68         ;;
69   status)
70         if ! is_module $VBOX_MODULE; then
71                 echo "$VBOX_MODULE module is loaded"
72         else
73                 echo "$VBOX_MODULE module is not loaded"
74                 RETVAL=3
75         fi
76         if [ ! -c $VBOX_DEVICE ]; then
77                 echo "$VBOX_DEVICE does not exist"
78                 RETVAL=3
79         else
80                 echo "$VBOX_DEVICE exists with major/minor $(ls -l $VBOX_DEVICE | awk '{print $5 $6}')"
81         fi
82         ;;
83   *)
84         msg_usage "$0 {start|stop|restart|status}"
85         exit 3
86 esac
87
88 exit $RETVAL
This page took 0.088257 seconds and 3 git commands to generate.