Add scripts for installing OpenConnect workarounds
This commit is contained in:
parent
b358e8a07f
commit
9ba6fea894
3 changed files with 10 additions and 4 deletions
5
scripts/Arch/Config/OpenConnect/networkmanager.sh
Executable file
5
scripts/Arch/Config/OpenConnect/networkmanager.sh
Executable 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";
|
5
scripts/Arch/Config/OpenConnect/plasma-nm.sh
Executable file
5
scripts/Arch/Config/OpenConnect/plasma-nm.sh
Executable 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";
|
|
@ -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";
|
|
||||||
|
|
Loading…
Reference in a new issue