aboutsummaryrefslogtreecommitdiffstats
path: root/main/openvpn
Commit message (Collapse)AuthorAgeFilesLines
* main/openvpn: fix checksumsKevin Daudt2020-03-091-1/+1
|
* main/openvpn: Add instance name to OpenVPN --daemon paramStefano Sasso2020-03-092-2/+2
| | | | | | | | | The --daemon OpenVPN params also controls the tag OpenVPN uses to ship logs to syslog. If multiple OpenVPN instances are used, the user may want to apply syslog filters, to have different log files for the different instances. If you specify an additional --daemon option in the config file, it will be ignored, since the one on the command line is preferred.
* main/openvpn: fix ebegin call in initscriptLeo2020-02-232-8/+4
|
* main/openvpn: allow to pass additional arguments for openvpnJakub Jirutka2020-02-073-4/+8
|
* main/openvpn: add commands reload and stats to init scriptJakub Jirutka2020-01-112-2/+18
|
* main/openvpn: upgrade to 2.4.8J0WI2020-01-031-3/+3
|
* main/openvpn: added openrc subpackageFrancesco Colista2019-03-141-2/+2
|
* main/openvpn: upgrade to 2.4.7J0WI2019-03-141-5/+10
|
* main/openvpn: removed obsolete libressl.patchTetsumaki2019-02-052-26/+1
|
* main/openvpn: rebuild against openssl 1.1Natanael Copa2018-11-071-2/+2
|
* main/openvpn: fix init scriptWojciech Górski2018-07-082-3/+3
|
* main/openvpn: fix backward compatibility of init scriptJakub Jirutka2018-05-133-47/+58
| | | | | | | | | | | | | This fixes problem introduced in commit 4a66978dd949d571fdd984d800b3121c3a1a297f. When user upgrades openvpn package, but (s)he has never modified /etc/conf.d/openvpn file, apk automatically updates it and so sets openvpn to the client mode. I forgot to this case and wrongly assumed that existing config is always preserved. BTW, the previoud change was based on https://github.com/OpenRC/openrc/blob/master/support/init.d.examples/openvpn.in. Ref #8875 (https://bugs.alpinelinux.org/issues/8875)
* main/openvpn: fix initscript to not check cfgfile when doesn't existJakub Jirutka2018-05-072-3/+3
|
* main/openvpn: rewrite init scriptJakub Jirutka2018-05-063-86/+99
|
* main/openvpn: rename deprecated $SVCNAME to $RC_SVCNAMEJakub Jirutka2018-05-064-22/+22
|
* main/openvpn: remove non-Linux part from init scriptJakub Jirutka2018-05-062-35/+12
|
* main/openvpn: upgrade to 2.4.6Jakub Jirutka2018-05-061-3/+3
|
* main/openvpn: rebuild against libressl-2.7Natanael Copa2018-04-061-1/+1
|
* main/opnenvpn: upgrade to 2.4.5Sören Tempel2018-03-202-3/+28
|
* main/openvpn: modernize APKBUILDSören Tempel2018-03-201-7/+4
|
* main/openvpn: rebuild against libressl-2.6Natanael Copa2017-11-091-1/+1
|
* main/openvpn: bump to 2.4.4Daniel Isaksen2017-09-271-2/+2
|
* main/openvpn: security upgrade to 2.4.3Pieter Lange2017-06-231-2/+2
| | | | | | | | CVE-2017-7508 Remotely-triggerable ASSERT() on malformed IPv6 packet CVE-2017-7520 Pre-authentication remote crash/information disclosure CVE-2017-7521 Remote-triggerable memory leaks / potential double-free CVE-2017-7522 Post-authentication remote DoS with --x509-track + other fixes
* main/openvpn: security update to 2.4.2Łukasz Jendrysik2017-05-121-3/+3
| | | | | Update due to security audit done by OSTIF and QuarksLab https://ostif.org/the-openvpn-2-4-0-audit-by-ostif-and-quarkslab-results/
* main/openvpn: rebuild against libressl 2.5Natanael Copa2017-04-181-1/+1
|
* main/openvpn: upgrade to 2.4.1André Klitzing2017-03-271-14/+2
| | | | Remove outdated configure flags.
* main/openvpn: upgrade to 2.4.0Valery Kartel2016-12-311-20/+9
|
* main/openvpn: upgrade to 2.3.14André Klitzing2016-12-181-5/+5
|
* main/openvpn: rebuild against libresslNatanael Copa2016-10-101-2/+2
|
* main/openvpn: upgrade to 2.3.12Natanael Copa2016-09-061-4/+4
|
* main/openvpn: upgrade to 2.3.11Francesco Colista2016-05-161-5/+5
|
* main/[various]: bump pkgrel for pre-install fixesPrzemyslaw Pawelczyk2016-04-251-1/+1
|
* Reorder arguments passed to addgroup/adduser in scripts.Przemyslaw Pawelczyk2016-04-251-1/+1
| | | | | | | Now all invocations have following order of arguments (if present): addgroup -S -g ... GROUP adduser -S -u ... -D -H -h ... -s ... -G ... -g ... USER
* Improve consistency of scripts using adduser/addgroup.Przemyslaw Pawelczyk2016-04-251-0/+1
| | | | | | | | | | | | Following rules have been applied: - script starts with shebang !#/bin/sh followed by blank line, - script ends with exit 0 prepended by blank line, - only stderr of adduser, addgroup or passwd is redirected to /dev/null, - getent passwd/group instances has been removed, - manual checking of file and group existence has been removed, - `|| true` instances has been removed. Comments and line wrapping have been preserved.
* Add -g option (GECOS/comment) to adduser in scripts.Przemyslaw Pawelczyk2016-04-251-1/+1
| | | | | | This way we can avoid ugly default: Linux user,,,
* main/openvpn: fix down script not restoring original resolv.confChris Kankiewicz2016-01-262-6/+6
| | | | | | | | | | This patch fixes an error where, in the provided OpenVPN down script, the cp command would fail due to the resolv.conf file already existing. Instead of using cp we cat the file contents over the exising resolv.conf file to avoid the error and preserve any symlinks that may exist. Fixes issue #5027
* main/openvpn: new upstream version 2.3.10Christian Kampka2016-01-041-4/+4
|
* main/openvpn: new upstream version 2.3.9Christian Kampka2015-12-241-5/+5
|
* main/openvpn: Increased pkgrelDaniele Coli2015-11-121-1/+1
| | | | | Increased pkgrel after having added description to init.d script in previous commit.
* main/openvpn: Added description to init.d scriptDaniele Coli2015-11-042-3/+5
| | | | | Added description to init.d script in order to make it compliant with rc-system and avoid annoying warning messages on syslog.
* main/openvpn: upgrade to 2.3.8Sören Tempel2015-09-171-10/+6
|
* Do not delete *.la files manuallyBartłomiej Piotrowski2015-09-101-1/+0
| | | | | Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
* main/openvpn: upgrade to 2.3.7Natanael Copa2015-07-102-22/+5
|
* main/*: replace all sbin/runscript with sbin/openrc-runNatanael Copa2015-04-282-5/+5
|
* main/openvpn: build fix. needs linux-headersNatanael Copa2014-12-161-1/+1
|
* main/openvpn: upgrade to 2.3.6Natanael Copa2014-12-051-4/+4
|
* main/openvpn: upgrade to 2.3.5Natanael Copa2014-11-201-4/+4
|
* main/openvpn: upgrade to 2.3.4Bartłomiej Piotrowski2014-05-171-5/+4
|
* main/openvpn: upgrade to 2.3.3Natanael Copa2014-04-221-5/+5
|
* main/openvpn: fix musl buildTimo Teräs2013-10-092-7/+25
|