]> git.pld-linux.org Git - packages/wine.git/blob - wine.init
- 20050111
[packages/wine.git] / wine.init
1 #!/bin/sh
2 # $Id$
3 #
4 # wine:         Allow users to run Windows(tm) applications by just clicking
5 #               on them (or typing ./file.exe)
6 #
7 # chkconfig:    2345 95 10
8 #
9 # description:  Allow users to run Windows(tm) applications by just clicking \
10 #               on them (or typing ./file.exe)
11 #
12
13 # Source function library
14 . /etc/rc.d/init.d/functions
15
16 BINFMT_DIR='/proc/sys/fs/binfmt_misc'
17
18
19 case "$1" in
20   start|reload|force-reload)
21         if [ ! -f /var/lock/subsys/wine ]; then
22                 # check if binfmt_misc is not already mounted
23                 if ! /bin/mount | grep -q "${BINFMT_DIR} type binfmt_misc"; then
24                         /bin/mount none -t binfmt_misc /proc/sys/fs/binfmt_misc
25                 fi
26                 msg_starting "Wine"
27                 echo ':windows:M::MZ::/usr/bin/wine:' > ${BINFMT_DIR}/register
28                 echo ':windowsPE:M::PE::/usr/bin/wine:' > ${BINFMT_DIR}/register
29                 ok
30                 touch /var/lock/subsys/wine
31         else
32                 msg_already_running "Wine"
33         fi
34         ;;
35   stop)
36         if [ -f /var/lock/subsys/wine ]; then
37                 msg_stopping "Wine"
38                 echo "-1" > ${BINFMT_DIR}/windows
39                 echo "-1" > ${BINFMT_DIR}/windowsPE
40                 rm -f /var/lock/subsys/wine
41                 ok
42         else
43                 msg_not_running "Wine"
44         fi
45         ;;
46   restart)
47     $0 stop;
48     $0 start;
49         ;;
50   status)
51         ;;
52   *)
53         msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
54         exit 3
55 esac
56
57 exit 0
This page took 0.088892 seconds and 3 git commands to generate.