mirror of
https://github.com/dkmstr/openuds.git
synced 2025-01-07 17:17:55 +03:00
22 lines
489 B
Plaintext
22 lines
489 B
Plaintext
|
#!/bin/sh -e
|
||
|
### BEGIN INIT INFO
|
||
|
# Provides: uds-actor
|
||
|
# Required-Start: $local_fs $remote_fs $network $syslog $named
|
||
|
# Required-Stop: $local_fs $remote_fs $network $syslog $named
|
||
|
# Default-Start: 2 3 4 5
|
||
|
# Default-Stop: 0 1 6
|
||
|
# Short-Description: UDS Actor
|
||
|
### END INIT INFO
|
||
|
#
|
||
|
|
||
|
case "$1" in
|
||
|
start|stop|restart)
|
||
|
/usr/bin/udsactor $1
|
||
|
;;
|
||
|
force-reload)
|
||
|
./actor restart
|
||
|
;;
|
||
|
*) echo "Usage: $0 {start|stop|restart|force-reload}" >&2; exit 1 ;;
|
||
|
esac
|
||
|
|