17 lines
198 B
Plaintext
Executable File
17 lines
198 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="SPOC"
|
|
|
|
depend() {
|
|
need localmount sysfs cgroups
|
|
after firewall net
|
|
}
|
|
|
|
start() {
|
|
/usr/bin/spoc-app autostart
|
|
}
|
|
|
|
stop() {
|
|
/usr/bin/spoc-app stop-all
|
|
}
|