1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/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 ${?} }