spoc/service/spoc.openrc

16 lines
157 B
Plaintext
Raw Normal View History

2021-07-06 18:06:54 +02:00
#!/sbin/openrc-run
description="SPOC"
depend() {
need podman
}
start() {
/usr/bin/spoc start-autostarted
}
stop() {
/usr/bin/spoc stop-all
}