]> git.pld-linux.org Git - packages/VirtualBox.git/blob - VirtualBox-vboxnetadp.init
- rebuild for kernel-3.9.5-1 /home/users/baggins/devel/PLD/rpm/packages
[packages/VirtualBox.git] / VirtualBox-vboxnetadp.init
1 #!/bin/sh
2 #
3 # virtualbox    VirtualBox virtualizer for x86 hardware
4 # chkconfig:    345 84 16
5 # description:  Oracle VirtualBox is a general-purpose full virtualizer for x86 \
6 #               hardware. Targeted at server, desktop and embedded use.
7
8 # Source function library
9 . /etc/rc.d/init.d/functions
10
11 VBOX_DEVICE="/dev/vboxnetctl"
12 VBOX_MODULE="vboxnetadp"
13
14 # Get service config - may override defaults
15 [ -f /etc/sysconfig/virtualbox ] && . /etc/sysconfig/virtualbox
16
17 setup() {
18         modprobe -s $VBOX_MODULE
19         RETVAL=$?
20
21         if [ -d /dev/.udev ] || [ -d /run/udev/rules.d ]; then
22                 return $RETVAL
23         fi
24
25         # set proper $VBOX_DEVICE for systems with static dev
26         show "Setting $VBOX_DEVICE entry"; busy
27         rm -f $VBOX_DEVICE
28         VBOX_MAJOR=$(awk -vdevice="${VBOX_DEVICE#/dev/}" '$2 == device {print $1}' /proc/devices)
29         if [ -n "$VBOX_MAJOR" ]; then
30                 VBOX_MINOR=0
31         else
32                 VBOX_MINOR=$(awk -vdevice="${VBOX_DEVICE#/dev/}" '$2 == device {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
38         if [ -z "$VBOX_MAJOR" ]; then
39                 /sbin/rmmod $VBOX_MODULE
40                 RETVAL=1
41         elif ! mknod -m 0660 $VBOX_DEVICE c $VBOX_MAJOR $VBOX_MINOR; then
42                 RETVAL=$?
43                 rmmod $VBOX_MODNAME
44                 fail
45         elif ! chown root:vbox $VBOX_DEVICE; then
46                 RETVAL=$?
47                 fail
48         else
49                 ok
50         fi
51         return $RETVAL
52 }
53
54 start() {
55         if [ -f /var/lock/subsys/$VBOX_MODULE ]; then
56                 return
57         fi
58
59         setup || exit $?
60         touch /var/lock/subsys/$VBOX_MODULE
61 }
62
63 stop() {
64         # NOTE: rmmod will wait if device is in use, so automatic rmmod probably is not the best idea
65         /sbin/rmmod $VBOX_MODULE
66         rm -f /var/lock/subsys/$VBOX_MODULE
67 }
68
69 condrestart() {
70         if [ -f /var/lock/subsys/$VBOX_MODULE ]; then
71                 stop
72                 start
73         else
74                 RETVAL=$1
75         fi
76 }
77
78 RETVAL=0
79 # See how we were called.
80 case "$1" in
81   start)
82         start
83         ;;
84   stop)
85         stop
86         ;;
87   restart)
88         stop
89         start
90         ;;
91   try-restart)
92         condrestart 0
93         ;;
94   force-reload)
95         condrestart 7
96         ;;
97   setup)
98         setup
99         ;;
100   status)
101         if ! is_module $VBOX_MODULE; then
102                 echo "$VBOX_MODULE module is loaded"
103         else
104                 echo "$VBOX_MODULE module is not loaded"
105                 RETVAL=3
106         fi
107         if [ ! -c $VBOX_DEVICE ]; then
108                 echo "$VBOX_DEVICE does not exist"
109                 RETVAL=3
110         else
111                 echo "$VBOX_DEVICE exists with major/minor $(ls -l $VBOX_DEVICE | awk '{print $5 $6}')"
112         fi
113         ;;
114   *)
115         msg_usage "$0 {start|stop|restart|try-restart|force-reload|setup|status}"
116         exit 3
117 esac
118
119 exit $RETVAL
This page took 0.051989 seconds and 3 git commands to generate.