mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 02:05:16 +03:00
26 lines
631 B
Bash
26 lines
631 B
Bash
#!/sbin/openrc-run
|
|
# Copyright 1999-2004 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/files/pound.init-1.9,v 1.1 2005/07/07 15:45:08 mkennedy Exp $
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting pound"
|
|
if [ ! -f "/etc/pound.cfg" ]; then
|
|
eend 1 "configfile /etc/pound.cfg not found."
|
|
fi
|
|
start-stop-daemon --quiet --start --exec /usr/sbin/pound \
|
|
-- -f /etc/pound.cfg -p /var/run/pound.pid
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping pound"
|
|
start-stop-daemon --quiet --stop --pidfile /var/run/pound.pid
|
|
eend $?
|
|
}
|
|
|