1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/net/socks5/files/socks5.sh.sample
Volker Stolz 1050f32269 Check if socks5.conf exists in startup-script.
PR:		ports/68067
Submitted by:	KIMURA Yasuhiro
2004-06-19 10:53:12 +00:00

21 lines
384 B
Bash

#!/bin/sh
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
echo "$0: Cannot determine the PREFIX" >&2
exit 1
fi
case "$1" in
start)
[ -x ${PREFIX}/bin/socks5 -a -f ${PREFIX}/etc/socks5.conf ] && ${PREFIX}/bin/socks5 && echo -n ' socks5'
;;
stop)
killall socks5 && echo -n ' socks5'
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
;;
esac
exit 0