2023-04-03 20:39:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
contextRoot="$(mktemp -d)";
|
2023-04-04 22:54:29 +00:00
|
|
|
yay --noconfirm -Syu openconnect-git;
|
2023-04-04 22:54:15 +00:00
|
|
|
git clone https://git.nuth.ch/manuth/arch-networkmanager-openconnect-unsafe-crypto.git "$contextRoot";
|
2023-04-03 20:39:57 +00:00
|
|
|
. "$contextRoot/install.sh";
|
2023-04-03 20:50:17 +00:00
|
|
|
rm -rf "$contextRoot";
|