diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-07-06 18:47:16 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-07-06 18:47:16 +0000 |
commit | d0c9ac37442c4268cd1785e4ae05c91afa357c83 (patch) | |
tree | e0b02ec3445efaaeca916a73e2449df0e14d50a0 /net-misc/openvpn/files | |
parent | added perl-app to inherit wrt bug# 69329 (diff) | |
download | gentoo-2-d0c9ac37442c4268cd1785e4ae05c91afa357c83.tar.gz gentoo-2-d0c9ac37442c4268cd1785e4ae05c91afa357c83.tar.bz2 gentoo-2-d0c9ac37442c4268cd1785e4ae05c91afa357c83.zip |
Allow periods in config names, #139454 thanks to Ed Catmur.
(Portage version: 2.1.1_pre2-r2)
Diffstat (limited to 'net-misc/openvpn/files')
-rwxr-xr-x | net-misc/openvpn/files/openvpn-2.1.init | 2 | ||||
-rw-r--r-- | net-misc/openvpn/files/openvpn.init | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net-misc/openvpn/files/openvpn-2.1.init b/net-misc/openvpn/files/openvpn-2.1.init index b0bc7ad76349..f20bbb17febd 100755 --- a/net-misc/openvpn/files/openvpn-2.1.init +++ b/net-misc/openvpn/files/openvpn-2.1.init @@ -3,7 +3,7 @@ # Distributed under the terms of the GNU General Public License v2 VPNDIR="${VPNDIR:-/etc/openvpn}" -VPN="${SVCNAME##*.}" +VPN="${SVCNAME#*.}" if [[ -n ${VPN} && ${SVCNAME} != "openvpn" ]]; then VPNPID="/var/run/openvpn.${VPN}.pid" else diff --git a/net-misc/openvpn/files/openvpn.init b/net-misc/openvpn/files/openvpn.init index 20c8788096a9..809df9bec2df 100644 --- a/net-misc/openvpn/files/openvpn.init +++ b/net-misc/openvpn/files/openvpn.init @@ -3,7 +3,7 @@ # Distributed under the terms of the GNU General Public License v2 VPNDIR="/etc/openvpn" -VPN="${SVCNAME##*.}" +VPN="${SVCNAME#*.}" if [[ -n ${VPN} && ${SVCNAME} != "openvpn" ]]; then VPNPID="/var/run/openvpn.${VPN}.pid" else |