summaryrefslogtreecommitdiff
path: root/packaging/SGI/winbindd.rc
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/SGI/winbindd.rc')
-rw-r--r--packaging/SGI/winbindd.rc38
1 files changed, 0 insertions, 38 deletions
diff --git a/packaging/SGI/winbindd.rc b/packaging/SGI/winbindd.rc
deleted file mode 100644
index deb4708c667..00000000000
--- a/packaging/SGI/winbindd.rc
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /bin/sh
-
-#
-# winbindd control
-#
-
-IS_ON=/etc/chkconfig
-KILLALL=/sbin/killall
-
-WINBINDD=/usr/samba/bin/winbindd
-
-if test ! -x $IS_ON ; then
- IS_ON=true
-fi
-
-if $IS_ON verbose ; then
- ECHO=echo
-else # For a quiet startup and shutdown
- ECHO=:
-fi
-
-case $1 in
-'start')
- if $IS_ON winbind && test -x $WINBINDD; then
- $KILLALL -15 winbindd
- $ECHO "winbindd:\c"
- $WINBINDD ; $ECHO " winbindd."
- fi
- ;;
-'stop')
- $ECHO "Stopping winbindd."
- $KILLALL -15 winbindd
- exit 0
- ;;
-*)
- echo "usage: /etc/init.d/winbind {start|stop}"
- ;;
-esac