Added LXC support, Fedora setup script, auto vpn add script, updated README

This commit is contained in:
2023-05-13 17:42:26 +02:00
parent 72e99dbae0
commit e4fdd51924
4 changed files with 36 additions and 11 deletions

9
setup-vpn.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
folder_path="vpn"
for file in "$folder_path"/*; do
if [[ -f "$file" ]]; then
nmcli con import type openvpn file "$file"
fi
done