1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 10:15:12 +03:00
aports/community/at/atd.initd
ScrumpyJack 2ff62bbb9f testing/[various]: move packages to community
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
2016-07-04 11:42:28 +02:00

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 $?
}