Skip to content
This repository was archived by the owner on Jun 15, 2021. It is now read-only.

Commit 58fe76f

Browse files
aptalcathelamer
authored andcommitted
update readme and jenkinsfile
1 parent 206e855 commit 58fe76f

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ pipeline {
103103
steps{
104104
script{
105105
env.EXT_RELEASE = sh(
106-
script: ''' curl -w '%{url_effective}' -ILsS https://openvpn.net/downloads/openvpn-as-latest-ubuntu18.amd_64.deb -o /dev/null | awk -F '(openvpn-as-|-Ubuntu18)' '{print $2}' ''',
106+
script: ''' curl -sX GET http://as-repository.openvpn.net/as/debian/dists/bionic/main/binary-amd64/Packages.gz | gunzip -c |grep -A 7 -m 1 'Package: openvpn-as' | awk -F ': ' '/Version/{print $2;exit}' ''',
107107
returnStdout: true).trim()
108108
env.RELEASE_LINK = 'custom_command'
109109
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
234234

235235
## Versions
236236

237+
* **26.03.20:** - Switch to using the openvpn-as repo for packages.
237238
* **29.08.19:** - Update Application Setup instructions in readme to fix 2.7.5 login issue for existing users.
238239
* **27.08.19:** - Add new clients package to install and upgrade process.
239240
* **22.08.19:** - Prevent auto-start of openvpn after first time install, before configuration is completed.

jenkins-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# jenkins variables
44
project_name: docker-openvpn-as
55
external_type: na
6-
custom_version_command: "curl -w '%{url_effective}' -ILsS https://openvpn.net/downloads/openvpn-as-latest-ubuntu18.amd_64.deb -o /dev/null | awk -F '(openvpn-as-|-Ubuntu18)' '{print $2}'"
6+
custom_version_command: "curl -sX GET http://as-repository.openvpn.net/as/debian/dists/bionic/main/binary-amd64/Packages.gz | gunzip -c |grep -A 7 -m 1 'Package: openvpn-as' | awk -F ': ' '/Version/{print $2;exit}'"
77
release_type: stable
88
release_tag: latest
99
ls_branch: master

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ app_setup_block: |
6666
6767
# changelog
6868
changelogs:
69+
- { date: "26.03.20:", desc: "Switch to using the openvpn-as repo for packages." }
6970
- { date: "29.08.19:", desc: "Update Application Setup instructions in readme to fix 2.7.5 login issue for existing users." }
7071
- { date: "27.08.19:", desc: "Add new clients package to install and upgrade process." }
7172
- { date: "22.08.19:", desc: "Prevent auto-start of openvpn after first time install, before configuration is completed." }

0 commit comments

Comments
 (0)