blob: 4f6f2ea77bdcffe730f1f4be2d2233ff413160ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
command="/usr/bin/bopm"
description="Blitzed Open Proxy Monitor"
start_stop_daemon_args="--quiet --chuid ${BOPM_UID}"
pidfile="${PIDFILE}"
depend() {
need net
}
start_pre() {
checkpath -o ${BOPM_UID} -d "$(dirname "${PIDFILE}")"
}
|