mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 21:51:34 +02:00
11 lines
198 B
Plaintext
11 lines
198 B
Plaintext
#!/sbin/openrc-run
|
|
name="$SVCNAME"
|
|
command="/usr/bin/python3 /usr/share/ddnsc/ddnsc.py"
|
|
pidfile="/var/run/$SVCNAME.pid"
|
|
command_background=true
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|