19 lines
190 B
Plaintext
Executable File
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
|
|
}
|