blob: 8007b644ad651ea91882b2b1dccdd283d0cae263 (
plain)
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
}
start(){
ebegin "Starting sssd"
start-stop-daemon --start --exec @sbindir@/sssd -- -D
eend ${?}
}
stop(){
ebegin "Stopping sssd"
start-stop-daemon --stop --pidfile @localstatedir@/run/sssd.pid
eend ${?}
}
|