diff options
Diffstat (limited to 'community/redsocks/redsocks.initd')
-rw-r--r-- | community/redsocks/redsocks.initd | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/redsocks/redsocks.initd b/community/redsocks/redsocks.initd new file mode 100644 index 0000000000..592f19385c --- /dev/null +++ b/community/redsocks/redsocks.initd @@ -0,0 +1,35 @@ +#!/sbin/openrc-run + +description="Transparent socks redirector" + +CFGFILE="/etc/redsocks/${SVCNAME}.conf" +PIDFILE="/var/run/${SVCNAME}.pid" + +depend() { + need localmount net + use dns logger + after bootmisc firewall +} + +checkconfig() { + /usr/bin/redsocks -t -c ${CFGFILE} + if [ "$?" -gt 0 ]; then + eerror "Problem on configuration file ${CFGFILE}" + return 1 + fi +} + +start() { + checkconfig || return 1 + ebegin "Starting ${SVCNAME}" + start-stop-daemon --start --exec /usr/bin/redsocks --pidfile "${PIDFILE}" \ + -- -c "${CFGFILE}" -p "${PIDFILE}" + eend $? +} + +stop() { + checkconfig || return 1 + ebegin "Stopping ${SVCNAME}" + start-stop-daemon --stop --exec /usr/bin/redsocks --pidfile "${PIDFILE}" + eend $? +} |