You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
326 B
17 lines
326 B
#!/sbin/openrc-run |
|
# |
|
# FIXME: I am pretty sure this is not 'right' as I am not familiar with this |
|
# init system and did not bother to read the docs throughoughly. |
|
|
|
name="$RC_SVCNAME" |
|
|
|
depend() { |
|
need net logger rdnssd |
|
before sshd |
|
} |
|
|
|
start() { |
|
ebegin "Starting uncloud-init" |
|
/usr/local/bin/uncloud-init | logger |
|
eend $? |
|
}
|
|
|