diff options
author | Arne Schwabe <arne@rfc2549.org> | 2014-07-23 01:51:47 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2014-07-23 01:51:47 +0200 |
commit | a42b3f2e54971e1325666720e235ce1e17ed8cae (patch) | |
tree | f850a73ad93c392b2b8561636b08e07f2262f78c /main/openvpn/distro | |
parent | b5bf37d1e2ff5968f748d1d756e37e46eb572ffd (diff) |
Updaten OpenVPN master
--HG--
extra : rebase_source : 7937a60e9172279fce1c3cf37371a7e74caf7f31
Diffstat (limited to 'main/openvpn/distro')
-rwxr-xr-x | main/openvpn/distro/rpm/openvpn.init.d.rhel | 2 | ||||
-rw-r--r-- | main/openvpn/distro/rpm/openvpn.init.d.suse | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/openvpn/distro/rpm/openvpn.init.d.rhel b/main/openvpn/distro/rpm/openvpn.init.d.rhel index 821abd58..cdf3e9de 100755 --- a/main/openvpn/distro/rpm/openvpn.init.d.rhel +++ b/main/openvpn/distro/rpm/openvpn.init.d.rhel @@ -148,7 +148,7 @@ case "$1" in for c in `/bin/ls *.conf 2>/dev/null`; do bn=${c%%.conf} if [ -f "$bn.sh" ]; then - . $bn.sh + . ./$bn.sh fi rm -f $piddir/$bn.pid $openvpn --daemon --writepid $piddir/$bn.pid --config $c --cd $work diff --git a/main/openvpn/distro/rpm/openvpn.init.d.suse b/main/openvpn/distro/rpm/openvpn.init.d.suse index 2bac7f32..270024e8 100644 --- a/main/openvpn/distro/rpm/openvpn.init.d.suse +++ b/main/openvpn/distro/rpm/openvpn.init.d.suse @@ -161,7 +161,7 @@ case "$1" in for c in `/bin/ls *.conf 2>/dev/null`; do bn=${c%%.conf} if [ -f "$bn.sh" ]; then - . $bn.sh + . ./$bn.sh fi rm -f $piddir/$bn.pid $openvpn --daemon --writepid $piddir/$bn.pid --config $c --cd $work |