]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - src/init.d/samba
Alte Initscripts entfernt...
[ipfire-2.x.git] / src / init.d / samba
diff --git a/src/init.d/samba b/src/init.d/samba
deleted file mode 100644 (file)
index 1391e35..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-# Begin /etc/init.d/samba
-
-# Based on sysklogd script from LFS-3.1 and earlier.
-# Rewritten by Gerard Beekmans  - gerard@linuxfromscratch.org
-
-#$LastChangedBy: bdubbs $
-#$Date: 2005-08-01 14:29:19 -0500 (Mon, 01 Aug 2005) $
-
-. /etc/init.d/init-functions
-
-case "$1" in
-       start)
-               boot_mesg "Starting nmbd..."
-               loadproc /usr/sbin/nmbd -D
-
-               boot_mesg "Starting smbd..."
-               loadproc /usr/sbin/smbd -D
-               ;;
-
-       stop)
-               boot_mesg "Stopping smbd..."
-               killproc /usr/sbin/smbd
-
-               boot_mesg "Stopping nmbd..."
-               killproc /usr/sbin/nmbd
-                ;;
-
-       reload)
-               boot_mesg "Reloading smbd..."
-               reloadproc /usr/sbin/smbd
-
-               boot_mesg "Reloading nmbd..."
-               reloadproc /usr/sbin/nmbd
-               ;;
-
-       restart)
-               $0 stop
-               sleep 1
-               $0 start
-               ;;
-
-       status)
-               statusproc /usr/sbin/nmbd
-               statusproc /usr/sbin/smbd
-               ;;
-
-       *)
-               echo "Usage: $0 {start|stop|reload|restart|status}"
-               exit 1
-               ;;
-esac
-
-# End /etc/init.d/samba