12 lines
290 B
Bash
12 lines
290 B
Bash
#!/bin/bash
|
|
|
|
# Mac Wireguard Installation
|
|
|
|
wireguardzip="https://gitea.zephyre.one/Pakobbix/quick_wireguardtest/raw/branch/main/Wireguard.app.zip" -O "Wireguard.app.zip"
|
|
|
|
curl -s $wireguardzip
|
|
|
|
unzip WireGuard.app.zip -d /Applications/
|
|
|
|
sudo chown -R root:wheel /Applications/WireGuard.app
|