From ad00237aafd5f68c89df5da4bae7f98b95741200 Mon Sep 17 00:00:00 2001 From: cvs2svn Import User Date: Tue, 1 Jul 1997 01:19:14 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'pre_luke_stuffup_1'. --- examples/redhat/smb.init | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 examples/redhat/smb.init (limited to 'examples/redhat/smb.init') diff --git a/examples/redhat/smb.init b/examples/redhat/smb.init deleted file mode 100755 index ab047e55b4a..00000000000 --- a/examples/redhat/smb.init +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -# Source function library. -. /etc/rc.d/init.d/functions - -# Source networking configuration. -. /etc/sysconfig/network - -# Check that networking is up. -[ ${NETWORKING} = "no" ] && 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 "" - ;; - *) - echo "Usage: smb {start|stop}" - exit 1 -esac - -- cgit