spoc/service/spoc.openrc

16 lines
157 B
Plaintext

#!/sbin/openrc-run
description="SPOC"
depend() {
need podman
}
start() {
/usr/bin/spoc start-autostarted
}
stop() {
/usr/bin/spoc stop-all
}