You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-vpn/vtun/files/vtun.rc

33 lines
669 B

#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net
}
start() {
IFS=$'\n'
for line in `grep -v '^[[:space:]]*#' /etc/vtund-start.conf | grep -v '^[[:space:]]*$'`
do
echo $line |
(IFS=" "
read host server args
if [ "$host" = "--server--" ]; then
ebegin "Starting vtund server"
/usr/sbin/vtund -s -P $server $args
eend $?
else
ebegin "Starting vtund client $host to $server"
/usr/sbin/vtund $args -- $host $server
eend $?
fi)
done
}
stop() {
ebegin "Stopping all vtund servers and clients"
killall vtund
eend $?
}