#!/bin/sh
#
# Start winbind
#

case "$1" in
  start)
  echo -n "Starting windbin: "
  windbindd
  echo "OK"
  ;;
  stop)
  echo -n "Stopping windbind "
  killall windbindd
  echo "OK"
  ;;
  restart|reload)
  ;;
  *)
  echo "Usage: $0 {start|stop|restart}"
  exit 1
esac

exit $?
