Create caddy.initd

This commit is contained in:
KronoZed 2017-01-27 19:07:29 +03:00 committed by GitHub
parent fc586670a3
commit 1730798a82
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
DAEMON=$(which caddy)
USERBIND="setcap cap_net_bind_service=+ep"
STOP_SCHEDULE="${STOP_SCHEDULE:-QUIT/5/TERM/5/KILL/5}"
depend() {
use net
after dns
}
start() {
ebegin "Starting Caddy"
$USERBIND $DAEMON
start-stop-daemon --background --start --quiet \
--make-pidfile --pidfile $PIDFILE \
--user $NAME --exec $DAEMON \
-- $CADDY_OPTIONS
eend $?
}
stop() {
ebegin "Stopping Caddy"
start-stop-daemon --stop --quiet --exec $DAEMON \
--retry=$STOP_SCHEDULE --pidfile $PIDFILE --name $NAME
eend $?
}