summaryrefslogtreecommitdiff
path: root/libre/webmin/webmin.rc
diff options
context:
space:
mode:
Diffstat (limited to 'libre/webmin/webmin.rc')
-rw-r--r--libre/webmin/webmin.rc46
1 files changed, 0 insertions, 46 deletions
diff --git a/libre/webmin/webmin.rc b/libre/webmin/webmin.rc
deleted file mode 100644
index 6aac8941d..000000000
--- a/libre/webmin/webmin.rc
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-start=/etc/webmin/start
-stop=/etc/webmin/stop
-lockfile=/var/lock/webmin
-
-case "$1" in
-'start')
- stat_busy "Starting Webmin daemon"
- $start >/dev/null 2>&1 </dev/null
- RETVAL=$?
- if [ "$RETVAL" = "0" ]; then
- touch $lockfile >/dev/null 2>&1
- add_daemon webmin
- stat_done
- else
- stat_fail
-fi
-;;
-
-'stop')
- stat_busy "Stopping Webmin daemon"
- $stop >/dev/null 2>&1 </dev/null
- RETVAL=$?
- if [ "$RETVAL" = "0" ]; then
- rm -f $lockfile
- rm_daemon webmin
- stat_done
- else
- stat_fail
-fi
-;;
-
-'restart')
- $0 stop
- $0 start
-;;
-*)
-echo "Usage: $0 { start | stop | restart }"
-RETVAL=1
-;;
-esac
-exit $RETVAL \ No newline at end of file