forked from Spark/ssm-services
12 lines
175 B
Plaintext
12 lines
175 B
Plaintext
|
#!/usr/bin/env watchman
|
||
|
|
||
|
service_type='oneshot'
|
||
|
service_command="$BASH"
|
||
|
service_args='/etc/rc.local'
|
||
|
|
||
|
unset stop
|
||
|
|
||
|
start() {
|
||
|
[[ -f "/etc/rc.local" ]] && { watchman.start; }
|
||
|
}
|