Files
myos/ansible/roles/hosts/files/etc/init.d/myos-openrc
T
Yann Autissier a75d5b4645 fix runit install
2022-06-26 14:45:26 +02:00

19 lines
190 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 status
}
stop() {
/etc/init.d/myos stop
}