10 lines
192 B
Plaintext
10 lines
192 B
Plaintext
|
#!/usr/bin/env ssm
|
||
|
|
||
|
service_type = oneshot
|
||
|
service_command = /etc/rc.local
|
||
|
|
||
|
pre_start() {
|
||
|
# Do nothing, successfully, if /etc/rc.local is not executable.
|
||
|
[[ -x "/etc/rc.local" ]] || die 0
|
||
|
}
|