summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-07-12 16:03:53 +0000
committerGerald Carter <jerry@samba.org>2005-07-12 16:03:53 +0000
commitd584d3db78d1a740feade29cf873064bf2e3359e (patch)
tree2dc7eb9652c38407d4a7c570e77de57fdc1cbea0 /packaging
parentf6d125d95d8194ef46265b4f241189d893aa69dd (diff)
downloadsamba-d584d3db78d1a740feade29cf873064bf2e3359e.tar.gz
samba-d584d3db78d1a740feade29cf873064bf2e3359e.tar.xz
samba-d584d3db78d1a740feade29cf873064bf2e3359e.zip
r8381: moving sysv init script to packaging
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/sysv/samba.init37
1 files changed, 37 insertions, 0 deletions
diff --git a/packaging/sysv/samba.init b/packaging/sysv/samba.init
new file mode 100755
index 00000000000..e021e911f6b
--- /dev/null
+++ b/packaging/sysv/samba.init
@@ -0,0 +1,37 @@
+#!/bin/sh
+#
+# Copyright (c) Timo Knuutila <knuutila@cs.utu.fi> 1996.
+#
+# This file should have uid root, gid sys and chmod 744
+#
+if [ ! -d /usr/bin ]
+then # /usr not mounted
+ exit
+fi
+
+killproc() { # kill the named process(es)
+ pid=`/usr/bin/ps -e |
+ /usr/bin/grep -w $1 |
+ /usr/bin/sed -e 's/^ *//' -e 's/ .*//'`
+ [ "$pid" != "" ] && kill $pid
+}
+
+# Start/stop processes required for samba server
+
+case "$1" in
+
+'start')
+#
+# Edit these lines to suit your installation (paths, workgroup, host)
+#
+ /opt/samba/bin/smbd -D -s/opt/samba/smb.conf
+ /opt/samba/bin/nmbd -D -l/opt/samba/log -s/opt/samba/smb.conf
+ ;;
+'stop')
+ killproc nmbd
+ killproc smbd
+ ;;
+*)
+ echo "Usage: /etc/init.d/samba.server { start | stop }"
+ ;;
+esac