mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
Fixed WireGuard installation on Ubuntu when module is not built-in
- PIVPN_DEPS array should be assigned before appending to it, not after, to avoid overwriting existing items.
This commit is contained in:
parent
551af5f351
commit
03f5871c71
1 changed files with 2 additions and 1 deletions
|
@ -1336,11 +1336,12 @@ installWireGuard(){
|
|||
|
||||
echo "::: Installing WireGuard... "
|
||||
|
||||
PIVPN_DEPS=(wireguard-tools qrencode)
|
||||
|
||||
if [ "$WIREGUARD_BUILTIN" -eq 0 ]; then
|
||||
PIVPN_DEPS+=(linux-headers-generic wireguard-dkms)
|
||||
fi
|
||||
|
||||
PIVPN_DEPS=(wireguard-tools qrencode)
|
||||
installDependentPackages PIVPN_DEPS[@]
|
||||
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue