Files
guru/net-misc/graftcp/files/graftcp-local.initd
Anna (cybertailor) Vyalkova 0af01b1f1e net-misc/graftcp: add 0.7.4
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2025-09-16 21:10:09 +05:00

27 lines
595 B
Plaintext

#!/sbin/openrc-run
# shellcheck shell=sh
#
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Translate TCP to SOCKS5 or HTTP proxy"
supervisor="supervise-daemon"
command="/usr/bin/graftcp-local"
command_args="\
-config ${GRAFTCP_CONFIG:-/etc/graftcp-local/graftcp-local.conf} \
-syslog \
-pipepath /run/graftcp/${RC_SVCNAME}.fifo \
${GRAFTCP_OPTS}
"
: "${command_user=graftcp:graftcp}"
pidfile="/run/graftcp/${RC_SVCNAME}.pid"
depend() {
need net
use logger
}
start_pre() {
checkpath -d -o "${command_user}" /run/graftcp
}