]> git.pld-linux.org Git - packages/VirtualBox.git/blob - VirtualBox-vboxdrv.init
- xorg driver needed dri lib (worked with 1.7.4)
[packages/VirtualBox.git] / VirtualBox-vboxdrv.init
1 #!/bin/sh
2 #
3 # virtualbox    VirtualBox virtualizer for x86 hardware
4 #
5 # chkconfig:    345 82 27
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 setup() {
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"; busy
26                 rm -f $VBOX_DEVICE
27                 VBOX_MAJOR=$(awk '$2 == "vboxdrv" {print $1}' /proc/devices)
28                 if [ -n "$VBOX_MAJOR" ]; then
29                         VBOX_MINOR=0
30                 else
31                         VBOX_MINOR=$(awk '$2 == "vboxdrv" {print $1}' /proc/misc)
32                         if [ -n "$VBOX_MINOR" ]; then
33                                 VBOX_MAJOR=$(awk '$2 == "misc" {print $1}' /proc/devices)
34                         fi
35                 fi
36                 if [ -z "$VBOX_MAJOR" ]; then
37                         /sbin/rmmod $VBOX_MODULE
38                         fail
39                 elif ! mknod -m 0660 $VBOX_DEVICE c $VBOX_MAJOR $VBOX_MINOR; then
40                         rmmod $VBOX_MODNAME
41                         fail
42                 elif ! chown root:vbox $VBOX_DEVICE; then
43                         fail
44                 else
45                         ok
46                 fi
47         fi
48 }
49
50 start() {
51         if [ -f /var/lock/subsys/vboxdrv ]; then
52                 return
53         fi
54
55         setup
56         touch /var/lock/subsys/vboxdrv
57 }
58
59 stop() {
60         # NOTE: rmmod will wait if device is in use, so automatic rmmod probably is not the best idea
61         /sbin/rmmod $VBOX_MODULE
62         rm -f /var/lock/subsys/vboxdrv
63 }
64
65 RETVAL=0
66 # See how we were called.
67 case "$1" in
68   start)
69         start
70         ;;
71   stop)
72         stop
73         ;;
74   restart)
75         stop
76         start
77         ;;
78   setup)
79         setup
80         ;;
81   status)
82         if ! is_module $VBOX_MODULE; then
83                 echo "$VBOX_MODULE module is loaded"
84         else
85                 echo "$VBOX_MODULE module is not loaded"
86                 RETVAL=3
87         fi
88         if [ ! -c $VBOX_DEVICE ]; then
89                 echo "$VBOX_DEVICE does not exist"
90                 RETVAL=3
91         else
92                 echo "$VBOX_DEVICE exists with major/minor $(ls -l $VBOX_DEVICE | awk '{print $5 $6}')"
93         fi
94         ;;
95   *)
96         msg_usage "$0 {start|stop|restart|setup|status}"
97         exit 3
98 esac
99
100 exit $RETVAL
This page took 0.068235 seconds and 3 git commands to generate.