17 lines
259 B
Text
Executable file
17 lines
259 B
Text
Executable file
#!/sbin/runscript
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting cfexecd"
|
|
start-stop-daemon --start --quiet --exec /usr/sbin/cfexecd
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping cfexecd"
|
|
start-stop-daemon --stop --quiet --exec /usr/sbin/cfexecd
|
|
eend $?
|
|
}
|