First Commit

This commit is contained in:
Guy Boisvert 2025-08-12 23:01:13 -04:00
commit bd67283438
142 changed files with 5061 additions and 0 deletions

24
Gvpn Executable file
View file

@ -0,0 +1,24 @@
#!/bin/bash
unset VPN;
VPN=(
'Real;~/Nextcloud2/guydev/network/wireguard/real/users/002-Guy.conf'
'Ingt;~/Nextcloud2/guydev/network/wireguard/ingtegration/chateauguay/user/U-003-dana.conf'
)
unset Items;
for Item in "${VPN[@]}"
do
echo -e "Item is: $Item"
IFS=";" read -r Name Def <<< $Item
echo -e "
Name : $Name
Def : $Def
"
Items+="$Name\n"
done
echo -e "${Items[@]}"