Files
myos/ansible/roles/hosts/files/etc/init.d/myos-openrc
T
aynic.os da2f3ed44a wip
2021-08-05 03:35:36 +01:00

19 lines
186 B
Plaintext
Executable File

#!/sbin/openrc-run
depend() {
need localmount swap
after bootmisc modules
}
start() {
/etc/init.d/myos start
}
status() {
/etc/init.d/myos ps
}
stop() {
/etc/init.d/myos stop
}