From caa441d803399fb49501b7efcf2eca068081d727 Mon Sep 17 00:00:00 2001 From: ankry Date: Sun, 11 May 2003 15:15:00 +0000 Subject: [PATCH] - cleaning Changed files: wine.init -> 1.7 --- wine.init | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/wine.init b/wine.init index e5d7f5a..efd6894 100644 --- a/wine.init +++ b/wine.init @@ -15,11 +15,10 @@ BINFMT_DIR='/proc/sys/fs/binfmt_misc' + case "$1" in start) - if [ -f /var/lock/subsys/wine ]; then - msg_already_running "Wine" - else + if [ ! -f /var/lock/subsys/wine ]; then # check if binfmt_misc is not already mounted if ! /bin/mount | grep -q "${BINFMT_DIR} type binfmt_misc"; then /bin/mount none -t binfmt_misc /proc/sys/fs/binfmt_misc @@ -27,23 +26,27 @@ case "$1" in msg_starting "Wine" echo ':windows:M::MZ::/usr/bin/wine:' > ${BINFMT_DIR}/register echo ':windowsPE:M::PE::/usr/bin/wine:' > ${BINFMT_DIR}/register - deltext ok + touch /var/lock/subsys/wine + else + msg_already_running "Wine" + exit 1 fi - touch /var/lock/subsys/wine ;; stop) - if [ ! -f /var/lock/subsys/wine ]; then + if [ -f /var/lock/subsys/wine ]; then + msg_stopping "Wine" + echo "-1" > ${BINFMT_DIR}/windows + echo "-1" > ${BINFMT_DIR}/windowsPE + rm -f /var/lock/subsys/wine + ok + else msg_not_running "Wine" exit 0 fi - msg_stopping "Wine" - echo "-1" > ${BINFMT_DIR}/windows - echo "-1" > ${BINFMT_DIR}/windowsPE - rm -f /var/lock/subsys/wine - deltext - ok ;; *) - echo "Usage: $0 {start|stop}" + echo "usage: $0 {start|stop}" esac + +exit 0 -- 2.44.0