mirror of
https://github.com/pirate/wireguard-docs
synced 2024-11-17 03:25:48 +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
|