mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-18 10:47:31 -08:00
10 lines
176 B
Bash
10 lines
176 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -f ~/.wg0 ]; then
|
|
sudo systemctl stop wg-quick-wg0.service
|
|
rm ~/.wg0
|
|
else
|
|
sudo systemctl restart wg-quick-wg0.service
|
|
touch ~/.wg0
|
|
fi
|