sssd.in revision cbe70d47d13d0da1acef83f0c81a0f2d81418ed8
#!/sbin/runscript
depend(){
need localmount netmount clock
use syslog xdm
}
start(){
ebegin "Starting sssd"
start-stop-daemon --start --exec @sbindir@/sssd -- -Df ${SSSD_OPTIONS}
eend ${?}
}
stop(){
ebegin "Stopping sssd"
start-stop-daemon --stop --pidfile @localstatedir@/run/sssd.pid
eend ${?}
}