myos/ansible/roles/hosts/files/etc/init.d/myos-openrc

19 lines
190 B
Plaintext
Raw Normal View History

2021-07-15 00:03:00 +02:00
#!/sbin/openrc-run
depend() {
need localmount swap
after bootmisc modules
}
start() {
/etc/init.d/myos start
}
2021-07-15 00:58:24 +02:00
status() {
2022-06-22 10:02:09 +02:00
/etc/init.d/myos status
2021-07-15 00:03:00 +02:00
}
2021-07-15 00:58:24 +02:00
stop() {
/etc/init.d/myos stop
2021-07-15 00:03:00 +02:00
}