Use new vpn format

This commit is contained in:
Natsu Kagami 2024-09-14 15:57:59 +03:00
parent 5ecad94dcb
commit 4fe33b7e80
Signed by: nki
GPG key ID: 55A032EB38B49ADB

View file

@ -4,13 +4,15 @@ let
name = "openconnect-epfl"; name = "openconnect-epfl";
runtimeInputs = with pkgs; [ openconnect rbw ]; runtimeInputs = with pkgs; [ openconnect rbw ];
text = '' text = ''
GASPAR_PASSWORD=$(rbw get gaspar) METHOD="Microsoft Entra ID"
GASPAR_TOKEN=$(rbw code gaspar) RBW_ENTRY="EPFL Microsoft Auth"
GASPAR_PASSWORD=$(rbw get "$RBW_ENTRY")
GASPAR_TOKEN=$(rbw code "$RBW_ENTRY")
printf "%s\n%s\n" "$GASPAR_PASSWORD" "$GASPAR_TOKEN" | sudo openconnect \ printf "\n%s\n%s\n%s\n" "$METHOD" "$GASPAR_PASSWORD" "$GASPAR_TOKEN" | command sudo openconnect \
--passwd-on-stdin \ --passwd-on-stdin \
-u pham \ -u "pham" \
--useragent='AnyConnect' \ --useragent='AnyConnect' \
"https://vpn.epfl.ch" "https://vpn.epfl.ch"
''; '';
}; };