Add scripts for installing OpenConnect workarounds

This commit is contained in:
Manuel Thalmann 2023-05-03 18:43:34 +02:00
parent 144cc61924
commit 26c7e7c633
3 changed files with 10 additions and 4 deletions

View file

@ -0,0 +1,5 @@
#!/bin/bash
contextRoot="$(mktemp -d)";
git clone https://git.nuth.ch/manuth/arch-networkmanager-openconnect-unsafe-crypto.git "$contextRoot";
. "$contextRoot/install.sh";
rm -rf "$contextRoot";

View file

@ -0,0 +1,5 @@
#!/bin/bash
contextRoot="$(mktemp -d)";
git clone https://git.nuth.ch/manuth/arch-plasma-nm-sso.git "$contextRoot";
. "$contextRoot/install.sh";
rm -rf "$contextRoot";

View file

@ -1,6 +1,2 @@
#!/bin/bash #!/bin/bash
contextRoot="$(mktemp -d)";
yay --noconfirm -Syu openconnect-git; yay --noconfirm -Syu openconnect-git;
git clone https://git.nuth.ch/manuth/arch-networkmanager-openconnect-unsafe-crypto.git "$contextRoot";
. "$contextRoot/install.sh";
rm -rf "$contextRoot";