summaryrefslogtreecommitdiff
path: root/net-misc/mcproxy/files/mcproxy.initd
blob: 44efd721c5490425512561e6ce5a81e9b8285f2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

config="/etc/${RC_SVCNAME}.conf"
extra_commands="checkconfig"
name="Mcproxy"
pidfile="/run/${RC_SVCNAME}.pid"

command="mcproxy"
command_background="true"
command_args="${MCPROXY_OPTS} -f ${config}"
command_args_checkconfig="-c"
procname="${RC_SVCNAME}"

checkconfig() {
	${command} ${command_args_checkconfig}
}

start_pre() {
	if [ ! -f "${config}" ]; then
		eerror "Please create ${config} before starting ${name}!"
		return 1
	else
		return 0
	fi
}