summaryrefslogtreecommitdiffstats
path: root/smb.init
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-11-29 16:58:10 +0100
committerGünther Deschner <gd@samba.org>2011-12-01 12:39:36 +0100
commit01aa0bbadc005d0504435ce0f553ca052670f860 (patch)
treeace3afe58793c743d668fd561514ea435b570e88 /smb.init
parenta20f2cd2128afcd14824f976cc12968e8b4a01aa (diff)
downloadsamba4-01aa0bbadc005d0504435ce0f553ca052670f860.tar.gz
samba4-01aa0bbadc005d0504435ce0f553ca052670f860.tar.xz
samba4-01aa0bbadc005d0504435ce0f553ca052670f860.zip
Remove sysinitV files.
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'smb.init')
-rw-r--r--smb.init114
1 files changed, 0 insertions, 114 deletions
diff --git a/smb.init b/smb.init
deleted file mode 100644
index f9fec26..0000000
--- a/smb.init
+++ /dev/null
@@ -1,114 +0,0 @@
-#!/bin/sh
-#
-# chkconfig: - 91 35
-# description: Starts and stops the Samba smbd daemon \
-# used to provide SMB network services.
-#
-# pidfile: /var/run/samba/smbd.pid
-# config: /etc/samba/smb.conf
-
-
-# Source function library.
-if [ -f /etc/init.d/functions ] ; then
- . /etc/init.d/functions
-elif [ -f /etc/rc.d/init.d/functions ] ; then
- . /etc/rc.d/init.d/functions
-else
- exit 1
-fi
-
-# Avoid using root's TMPDIR
-unset TMPDIR
-
-# Source networking configuration.
-. /etc/sysconfig/network
-
-if [ -f /etc/sysconfig/samba ]; then
- . /etc/sysconfig/samba
-fi
-
-# Check that networking is up.
-[ ${NETWORKING} = "no" ] && exit 1
-
-# Check that smb.conf exists.
-[ -f /etc/samba/smb.conf ] || exit 6
-
-RETVAL=0
-
-
-start() {
- KIND="SMB"
- echo -n $"Starting $KIND services: "
- daemon smbd $SMBDOPTIONS
- RETVAL=$?
- echo
- [ $RETVAL -eq 0 ] && touch /var/lock/subsys/smb || \
- RETVAL=1
- return $RETVAL
-}
-
-stop() {
- KIND="SMB"
- echo -n $"Shutting down $KIND services: "
- killproc smbd
- RETVAL=$?
- echo
- [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/smb
- return $RETVAL
-}
-
-restart() {
- stop
- start
-}
-
-reload() {
- echo -n $"Reloading smb.conf file: "
- killproc smbd -HUP
- RETVAL=$?
- echo
- return $RETVAL
-}
-
-rhstatus() {
- status -l smb smbd
- return $?
-}
-
-
-# Allow status as non-root.
-if [ "$1" = status ]; then
- rhstatus
- exit $?
-fi
-
-# Check that we can write to it... so non-root users stop here
-[ -w /etc/samba/smb.conf ] || exit 4
-
-
-
-case "$1" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- restart)
- restart
- ;;
- reload)
- reload
- ;;
- status)
- rhstatus
- ;;
- condrestart)
- [ -f /var/lock/subsys/smb ] && restart || :
- ;;
- *)
- echo $"Usage: $0 {start|stop|restart|reload|status|condrestart}"
- exit 2
-esac
-
-exit $?