nemunaire-overlay/app-crypt/moolticute/files/moolticuted.init
Pierre-Olivier Mercier f5799ff464 app-crypt/moolticute: update initd
Package-Manager: Portage-2.3.6, Repoman-2.3.1
2017-10-20 13:09:35 +02:00

19 lines
400 B
Plaintext

#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
command=/usr/bin/moolticuted
command_args=""
pidfile=/var/run/moolticuted.pid
depend() {
need local udev
}
start() {
ebegin "Starting moolticuted"
start-stop-daemon --start --background \
--make-pidfile --pidfile $pidfile --exec $command -- $command_args
eend $?
}