summaryrefslogtreecommitdiff
path: root/packaging/PHT/TurboLinux/smb.init
diff options
context:
space:
mode:
authorJohn Terpstra <jht@samba.org>1998-10-25 09:12:42 +0000
committerJohn Terpstra <jht@samba.org>1998-10-25 09:12:42 +0000
commitec73178649c03695a07c0c57292aa802e9ebd61a (patch)
tree5eac91992ef729a1fcc68aa573d5feb12a1d4d6b /packaging/PHT/TurboLinux/smb.init
parent9d8c5c3f760b7e3f9b6bf1a63073de138809735a (diff)
downloadsamba-ec73178649c03695a07c0c57292aa802e9ebd61a.tar.gz
samba-ec73178649c03695a07c0c57292aa802e9ebd61a.tar.bz2
samba-ec73178649c03695a07c0c57292aa802e9ebd61a.zip
Welcome to Pacific HiTech TurboLinux support.
(This used to be commit 230c42ab64aafb69313d5a8f9773bbd2bc6d47f9)
Diffstat (limited to 'packaging/PHT/TurboLinux/smb.init')
-rwxr-xr-xpackaging/PHT/TurboLinux/smb.init49
1 files changed, 49 insertions, 0 deletions
diff --git a/packaging/PHT/TurboLinux/smb.init b/packaging/PHT/TurboLinux/smb.init
new file mode 100755
index 0000000000..6529977d23
--- /dev/null
+++ b/packaging/PHT/TurboLinux/smb.init
@@ -0,0 +1,49 @@
+#!/bin/sh
+#
+# chkconfig: 345 91 35
+# description: Starts and stops the Samba smbd and nmbd daemons \
+# used to provide SMB network services.
+
+# Source function library.
+. /etc/rc.d/init.d/functions
+
+# Source networking configuration.
+. /etc/sysconfig/network
+
+# Check that networking is up.
+[ ${NETWORKING} = "no" ] && exit 0
+
+# Check that smb.conf exists.
+[ -f /etc/smb.conf ] || exit 0
+
+# See how we were called.
+case "$1" in
+ start)
+ echo -n "Starting SMB services: "
+ daemon smbd -D
+ daemon nmbd -D
+ echo
+ touch /var/lock/subsys/smb
+ ;;
+ stop)
+ echo -n "Shutting down SMB services: "
+ killproc smbd
+ killproc nmbd
+ rm -f /var/lock/subsys/smb
+ echo ""
+ ;;
+ status)
+ status smbd
+ status nmbd
+ ;;
+ restart)
+ echo -n "Restarting SMB services: "
+ $0 stop
+ $0 start
+ echo "done."
+ ;;
+ *)
+ echo "Usage: smb {start|stop|restart|status}"
+ exit 1
+esac
+