aports/community/incus/incus-agent.initd
Leonardo Arena 646de4d42e community/incus: move from testing
According to Incus main dev 0.6.0 wil be the first LTS release in the next new few weeks
2024-03-25 07:20:53 +00:00

16 lines
299 B
Bash

#!/sbin/openrc-run
description="Incus Agent"
command="/usr/sbin/incus-agent"
command_args="${INCUS_AGENT_OPTIONS}"
command_background="true"
pidfile="/run/incus/${RC_SVCNAME}.pid"
depend() {
before cloud-init cloud-init-local
}
start_pre() {
checkpath --directory "${pidfile%/*}" --mode 0750
}