Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/debian/libnss-ldap.init
blob: 36c41eedc5541d5f9cc1c2d2b2758285309467f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

case "$1" in
  start|restart|force-reload)
  	touch /lib/init/rw/libnss-ldap.bind_policy_soft ;;
  stop)
  	rm -f /lib/init/rw/libnss-ldap.bind_policy_soft ;;
  *)
  	echo "Usage: $0 {start|stop|restart|force-reload}"
	exit 1
	;;
esac