mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-21 04:10:20 +00:00
Add support for Ubuntu focal and arm64 as it's working fine by now
This commit is contained in:
parent
f80b0a7962
commit
619ce02474
1 changed files with 3 additions and 1 deletions
|
@ -466,7 +466,9 @@ preconfigurePackages(){
|
||||||
# On Debian (and Ubuntu), we can only reliably assume the headers package for amd64: linux-image-amd64
|
# On Debian (and Ubuntu), we can only reliably assume the headers package for amd64: linux-image-amd64
|
||||||
[[ $PLAT == 'Debian' && $DPKG_ARCH == 'amd64' ]] ||
|
[[ $PLAT == 'Debian' && $DPKG_ARCH == 'amd64' ]] ||
|
||||||
# On Ubuntu, additionally the WireGuard package needs to be available, since we didn't test mixing Ubuntu repositories.
|
# On Ubuntu, additionally the WireGuard package needs to be available, since we didn't test mixing Ubuntu repositories.
|
||||||
[[ $PLAT == 'Ubuntu' && $DPKG_ARCH == 'amd64' && -n $AVAILABLE_WIREGUARD ]]
|
[[ $PLAT == 'Ubuntu' && $DPKG_ARCH == 'amd64' && -n $AVAILABLE_WIREGUARD ]] ||
|
||||||
|
# Ubuntu focal has wireguard support
|
||||||
|
[[ $PLAT == 'Ubuntu' && $DPKG_ARCH == 'arm64' && $OSCN == 'focal' && -n $AVAILABLE_WIREGUARD ]]
|
||||||
then
|
then
|
||||||
WIREGUARD_SUPPORT=1
|
WIREGUARD_SUPPORT=1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue