mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 10:15:12 +03:00
Moves the packages listed below from the testing to the community repository after successfully testing of said packages. asciinema at calcurse cmus compton cpio dvd+rw-tools fortune fvwm geary h2o heirloom-mailx leafpad nedit nmh rover tor torsocks urlview vdesk w3m wbar xcalc xclock xeyes xkill
27 lines
486 B
Text
27 lines
486 B
Text
#!/sbin/openrc-run
|
|
|
|
# init.d file for atd (command scheduling daemon)
|
|
|
|
command="/usr/sbin/$SVCNAME"
|
|
pidfile="/var/run/$SVCNAME.pid"
|
|
|
|
depend() {
|
|
after localmount
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting command scheduling daemon ${SVCNAME}"
|
|
start-stop-daemon --start --quiet \
|
|
--pidfile ${pidfile} \
|
|
--exec ${command}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping command scheduling daemon ${name}"
|
|
start-stop-daemon --stop --quiet \
|
|
--pidfile ${pidfile} \
|
|
--exec ${command}
|
|
eend $?
|
|
}
|
|
|