summaryrefslogtreecommitdiff
path: root/packaging/Caldera/OpenServer/smb.init
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-08-19 04:28:16 +0000
committerGerald Carter <jerry@samba.org>2003-08-19 04:28:16 +0000
commit6283057f37d1aef24f5f41613587901c4eb94739 (patch)
tree725c068ad7578875614ed003a45b8d177e3ba570 /packaging/Caldera/OpenServer/smb.init
parent49e66508f271c5d548a045a1297652ed5b03494c (diff)
downloadsamba-6283057f37d1aef24f5f41613587901c4eb94739.tar.gz
samba-6283057f37d1aef24f5f41613587901c4eb94739.tar.bz2
samba-6283057f37d1aef24f5f41613587901c4eb94739.zip
no maintainer. Will be in the Attic if ever needed. No point
in claiming support for these packagaing files if we don't even know if they build. (This used to be commit b87357c11bf7cbaeb1b90aaf67c9b2ba64f65783)
Diffstat (limited to 'packaging/Caldera/OpenServer/smb.init')
-rwxr-xr-xpackaging/Caldera/OpenServer/smb.init76
1 files changed, 0 insertions, 76 deletions
diff --git a/packaging/Caldera/OpenServer/smb.init b/packaging/Caldera/OpenServer/smb.init
deleted file mode 100755
index ce6c6fa4b3..0000000000
--- a/packaging/Caldera/OpenServer/smb.init
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/sh
-#ident "@(#)samba.server 1.0 96/06/19 TK" /* SVr4.0 1.1.13.1*/
-#
-# Please send info on modifications to knuutila@cs.utu.fi
-#
-# This file should have uid root, gid sys and chmod 744
-#
-# Modified 17-Jul-99 by Ron Record (rr@sco.com) for use in SCO Skunkware
-#
-
-SAMBADIR=/usr/local/samba
-RCSCRIPT=/etc/rc2.d/S99samba
-
-if [ ! -d /usr/bin ]
-then # /usr not mounted
- exit
-fi
-
-killproc() { # kill the named process(es)
- if [ -f $SAMBADIR/var/locks/$1.pid ]
- then
- kill `cat $SAMBADIR/var/locks/$1.pid`
- else
- pid=`/usr/bin/ps -e |
- /usr/bin/grep $1 |
- /usr/bin/sed -e 's/^ *//' -e 's/ .*//'`
- [ "$pid" != "" ] && kill $pid
- fi
-}
-
-start() {
-#
-# Edit these lines to suit your installation (paths, workgroup, host)
-#
- $SAMBADIR/sbin/smbd -D -s $SAMBADIR/lib/smb.conf
- $SAMBADIR/sbin/nmbd -D -s $SAMBADIR/lib/smb.conf
-}
-
-stop() {
- killproc nmbd
- killproc smbd
-}
-
-# Start/stop processes required for samba server
-
-case "$1" in
-
-'start')
- start
- ;;
-'stop')
- stop
- ;;
-'restart')
- stop
- start
- ;;
-'enable')
- if [ -h $RCSCRIPT ] ; then
- echo "Samba is already enabled."
- else
- echo "Enabling Samba ... \c"
- rm -f $RCSCRIPT
- ln -s /etc/init.d/samba $RCSCRIPT
- echo "Done"
- fi
- ;;
-'disable')
- echo "Disabling Samba ... \c"
- rm -f $RCSCRIPT
- echo "Done"
- ;;
-*)
- echo "Usage: /etc/init.d/samba { start | stop | restart | enable | disable }"
- ;;
-esac