diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2008-02-20 01:15:28 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2008-02-20 01:15:28 +0000 |
commit | a878ad4e416a313c5a95397a634713a3af4b08b9 (patch) | |
tree | e224fd07822c84cc01ad2b51e69cd751a0f7963c /security/openvpn20 | |
parent | Third party tiling algorithms, configurations and scripts to xmonad. (diff) |
- Run opensvn with --daemon ${name} in order to get distinguishable and
useful syslog tags
PR: ports/120862
Submitted by: Matthias Andree <matthias.andree at gmx.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=207617
Diffstat (limited to 'security/openvpn20')
-rw-r--r-- | security/openvpn20/Makefile | 2 | ||||
-rw-r--r-- | security/openvpn20/files/openvpn.sh.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/security/openvpn20/Makefile b/security/openvpn20/Makefile index c8d8572b19f4..9e44cb1c8ea4 100644 --- a/security/openvpn20/Makefile +++ b/security/openvpn20/Makefile @@ -13,7 +13,7 @@ PORTNAME= openvpn # UPGRADE REQUESTS WILL BE DROPPED UNLESS BSD-RELATED. # ----------------------------------------------------- PORTVERSION= 2.0.6 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= security net # MASTER_SITES points to hosts in distinct data centers, # so just one MASTER_SITES entry should be OK. diff --git a/security/openvpn20/files/openvpn.sh.in b/security/openvpn20/files/openvpn.sh.in index ee9853a121d8..84da0a29b940 100644 --- a/security/openvpn20/files/openvpn.sh.in +++ b/security/openvpn20/files/openvpn.sh.in @@ -2,7 +2,7 @@ # # openvpn.sh - load tun/tap driver and start OpenVPN daemon # -# (C) Copyright 2005 - 2007 by Matthias Andree +# (C) Copyright 2005 - 2008 by Matthias Andree # based on suggestions by Matthias Grimm and Dirk Gouders # with multi-instance contribution from Denis Shaposhnikov, Gleb Kozyrev # and Vasil Dimov @@ -126,6 +126,6 @@ dir="$(eval echo \${${name}_dir})" interfaces="$(eval echo \${${name}_if})" required_files=${configfile} -command_args="--cd ${dir} --daemon --config ${configfile} --writepid ${pidfile}" +command_args="--cd ${dir} --daemon ${name} --config ${configfile} --writepid ${pidfile}" run_rc_command "$1" |