diff options
author | Roy Marples <uberlord@gentoo.org> | 2007-07-08 11:36:57 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2007-07-08 11:36:57 +0000 |
commit | 9af0b6ef7e6bbb58c469f8d093b0a7a90398539e (patch) | |
tree | c9bf0b0bde75186f96c4abe8054e7a270f1e7eba /net-misc | |
parent | Fix fbsd, bug#184535, thanks to lavajoe (diff) | |
download | gentoo-2-9af0b6ef7e6bbb58c469f8d093b0a7a90398539e.tar.gz gentoo-2-9af0b6ef7e6bbb58c469f8d093b0a7a90398539e.tar.bz2 gentoo-2-9af0b6ef7e6bbb58c469f8d093b0a7a90398539e.zip |
RE_ENTER config variable allows custom up/down scripts to re-enter openvpn. Should fix #133107.
(Portage version: 2.1.3_rc6)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/openvpn/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/openvpn/files/openvpn-2.1.conf | 7 | ||||
-rwxr-xr-x | net-misc/openvpn/files/openvpn-2.1.init | 6 |
3 files changed, 16 insertions, 4 deletions
diff --git a/net-misc/openvpn/ChangeLog b/net-misc/openvpn/ChangeLog index 24b58dd90da4..5d6fb2886132 100644 --- a/net-misc/openvpn/ChangeLog +++ b/net-misc/openvpn/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/openvpn # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/openvpn/ChangeLog,v 1.112 2007/06/29 09:17:36 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/openvpn/ChangeLog,v 1.113 2007/07/08 11:36:57 uberlord Exp $ + + 08 Jul 2007; Roy Marples <uberlord@gentoo.org> files/openvpn-2.1.conf, + files/openvpn-2.1.init: + RE_ENTER config variable allows custom up/down scripts to re-enter openvpn. + Should fix #133107. *openvpn-2.1_rc4-r1 (29 Jun 2007) diff --git a/net-misc/openvpn/files/openvpn-2.1.conf b/net-misc/openvpn/files/openvpn-2.1.conf index 1ed477e6eab7..17c93dc07f31 100644 --- a/net-misc/openvpn/files/openvpn-2.1.conf +++ b/net-misc/openvpn/files/openvpn-2.1.conf @@ -4,3 +4,10 @@ # OpenVPN configuration looks like a client, but it's really a peer or # something else. DETECT_CLIENT controls this behaviour. DETECT_CLIENT="yes" + +# If DETECT_CLIENT is no and you have your own scripts to re-enter the openvpn +# init script (ie, it first becomes "inactive" and the script then starts the +# script again to make it "started") then you can state this below. +# In other words, unless you understand service dependencies and are a +# competent shell scripter, don't set this. +RE_ENTER="no" diff --git a/net-misc/openvpn/files/openvpn-2.1.init b/net-misc/openvpn/files/openvpn-2.1.init index 52f111a86ed9..b61456334ae9 100755 --- a/net-misc/openvpn/files/openvpn-2.1.init +++ b/net-misc/openvpn/files/openvpn-2.1.init @@ -65,7 +65,7 @@ start() { checkconfig || return 1 - local args="" client=false + local args="" reenter=${RE_ENTER:-no} # If the config file does not specify the cd option, we do # But if we specify it, we override the config option which we do not want if ! grep -q "^[ \t]*cd[ \t].*" "${VPNCONF}" ; then @@ -77,7 +77,7 @@ start() { # which configures our DNS if any and marks us as up. if [ "${DETECT_CLIENT:-yes}" = "yes" ] && \ grep -q "^[ \t]*remote[ \t].*" "${VPNCONF}" ; then - client=true + reenter="yes" args="${args} --nobind --up-delay --up-restart" args="${args} --up /etc/openvpn/up.sh" args="${args} --down-pre --down /etc/openvpn/down.sh" @@ -104,7 +104,7 @@ start() { grep -q "^[ \t]*group[ \t].*" "${VPNCONF}" || args="${args} --group openvpn" fi - ${client} && mark_service_inactive "${SVCNAME}" + [ "${reenter}" = "yes" ] && mark_service_inactive "${SVCNAME}" start-stop-daemon --start --exec /usr/sbin/openvpn --pidfile "${VPNPID}" \ -- --config "${VPNCONF}" --writepid "${VPNPID}" --daemon ${args} eend $? "Check your logs to see why startup failed" |