mirror of
https://github.com/pirate/wireguard-docs.git
synced 2025-04-19 08:55:09 +00:00
10 lines
181 B
Bash
10 lines
181 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# install wireguard on Ubuntu
|
||
|
#add-apt-repository ppa:wireguard/wireguard
|
||
|
#apt update
|
||
|
#apt install wireguard
|
||
|
|
||
|
# install wireguard on macOS
|
||
|
brew install wireguard-tools
|