diff options
author | David Somero <dsomero@hotmail.com> | 2010-05-11 20:02:11 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:02:11 +0200 |
commit | 4799691c4e1d7024bff7324646f8f604ce0e2516 (patch) | |
tree | 3fae2a572a7175a0cf581d1110c90f5021b318cd /system/webmin/rc.webmin | |
parent | 16868a57c4e2b4d9b5dac5064fabbb38e684ec28 (diff) | |
download | slackbuilds-4799691c4e1d7024bff7324646f8f604ce0e2516.tar.gz |
system/webmin: Added to 12.0 repository
Diffstat (limited to 'system/webmin/rc.webmin')
-rw-r--r-- | system/webmin/rc.webmin | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/system/webmin/rc.webmin b/system/webmin/rc.webmin new file mode 100644 index 0000000000..72067fe843 --- /dev/null +++ b/system/webmin/rc.webmin @@ -0,0 +1,81 @@ +#!/bin/sh +# Description: Start or stop the Webmin server + +start=/etc/webmin/start +stop=/etc/webmin/stop +lockfile=/var/lock/subsys/webmin +confFile=/etc/webmin/miniserv.conf +pidFile=$(grep "^pidfile=" $confFile | sed -e 's/pidfile=//g') + +pkg_postinst () { + echo "Running postinstall scripts .." + + local crypt=$(grep "^root:" /etc/shadow | cut -f 2 -d :) + crypt=${crypt//\\/\\\\} + crypt=${crypt//\//\\\/} + sed -i "s/root:XXX/root:${crypt}/" /etc/webmin/miniserv.users + + if [ -d /usr/libexec/webmin ]; then + cd /usr/libexec/webmin + WEBMIN_CONFIG=/etc/webmin WEBMIN_VAR=/var/log/webmin /usr/libexec/webmin/run-postinstalls.pl + fi + + echo "done" +} + +case "$1" in +'start') + if [ -e /etc/webmin/FIRSTRUN ]; then + pkg_postinst + rm -f /etc/webmin/FIRSTRUN + fi + $start >/dev/null 2>&1 </dev/null + RETVAL=$? + if [ "$RETVAL" = "0" ]; then + touch $lockfile >/dev/null 2>&1 + echo "Webmin Started" + fi + ;; +'stop') + $stop + RETVAL=$? + if [ "$RETVAL" = "0" ]; then + rm -f $lockfile + fi + pidfile=`grep "^pidfile=" $confFile | sed -e 's/pidfile=//g'` + if [ "$pidfile" = "" ]; then + pidfile=$pidFile + fi + echo "Webmin Stopped" + rm -f $pidfile + ;; +'status') + pidfile=`grep "^pidfile=" $confFile | sed -e 's/pidfile=//g'` + if [ "$pidfile" = "" ]; then + pidfile=$pidFile + fi + if [ -s $pidfile ]; then + pid=`cat $pidfile` + kill -0 $pid >/dev/null 2>&1 + if [ "$?" = "0" ]; then + echo "Webmin (pid $pid) is running" + RETVAL=0 + else + echo "Webmin is stopped" + RETVAL=1 + fi + else + echo "Webmin is stopped" + RETVAL=1 + fi + ;; +'restart') + $stop ; $start + RETVAL=$? + ;; +*) + echo "Usage: $0 { start | stop | restart }" + RETVAL=1 + ;; +esac +exit $RETVAL |