mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
13 lines
215 B
Plaintext
13 lines
215 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name=$RC_SVCNAME
|
|
description="Starts dotoold service"
|
|
supervisor="supervise-daemon"
|
|
command="/usr/bin/dotoold"
|
|
|
|
reload() {
|
|
ebegin "Reloading $RC_SVCNAME"
|
|
/usr/bin/kill -HUP $MAINPID
|
|
eend $?
|
|
}
|