Files
myos/ansible/roles/hosts/files/etc/init.d/myos-openrc
T
aynic.os b6f1b8d798 myos
2021-07-14 23:03:00 +01:00

19 lines
190 B
Plaintext
Executable File

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