mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-27 09:21:41 +02:00
- simplify pkgdesc - fix source url - fix depends - install configs in /etc/diod instead of /etc - use .initd as suffix for init.d script for consistency (it probably needs cleanup too)
8 lines
122 B
Plaintext
Executable File
8 lines
122 B
Plaintext
Executable File
#!/sbin/runscript
|
|
|
|
start() {
|
|
ebegin
|
|
start-stop-daemon --start -p /var/run/diod.pid -mbx /usr/bin/diod -- -f
|
|
eend $?
|
|
}
|