From 73095990eb7687a00b38d1fefc116fc01962cdd2 Mon Sep 17 00:00:00 2001 From: Kcchouette Date: Mon, 13 May 2019 18:38:10 +0200 Subject: [PATCH] Fix APT repo for Ubuntu 16.04 (#421) --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 5575bd2..99e7bca 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -591,7 +591,7 @@ function installOpenVPN () { apt-get update fi if [[ "$VERSION_ID" = "16.04" ]]; then - echo "deb http://build.openvpn.net/debian/openvpn/stable trusty main" > /etc/apt/sources.list.d/openvpn.list + echo "deb http://build.openvpn.net/debian/openvpn/stable xenial main" > /etc/apt/sources.list.d/openvpn.list wget -O - https://swupdate.openvpn.net/repos/repo-public.gpg | apt-key add - apt-get update fi