Created
September 2, 2022 09:30
-
-
Save XeroHero/ad79316caf166dc80cc8d6e4a93d66c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#PiVPN install | |
curl -L https://install.pivpn.io > install.sh | |
chmod +x install.sh | |
./install.sh --unattended options.conf | |
#create profile for WG | |
pivpn -a -n VPN; | |
#install vim to enable viewing of the file | |
apt install vim -y | |
#open the file | |
vim ~/configs/VPN.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment