summaryrefslogtreecommitdiff
path: root/www-servers/pound/files/pound.init
blob: ff2322ea2189573eccd14d692619ffb63adc0170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/openrc-run
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

name="Pound daemon"
description=""
command="/usr/sbin/pound"
pidfile="/var/run/pound.pid"
command_args="-f /etc/pound.cfg -p ${pidfile}"

depend() {
	need net
}

start_pre() {
	checkpath --file /etc/pound.cfg
}