diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2025-03-29 03:51:14 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-03-29 03:51:14 -0700 |
commit | 3f9be8faee6763815f3041f5f82a632d3b865a16 (patch) | |
tree | e4060905a245ea23261e5af46ce8610cadab1ce2 | |
parent | 5ca2c590531336d07d34d695d15966b6d4655b70 (diff) |
aa swgp wg to ib instead of ca
-rwxr-xr-x | sh/upd | 2 | ||||
-rwxr-xr-x | sh/vpn | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -247,7 +247,7 @@ music () { monthly_misc () { if [ "$hostname" = xyzinsp ]; then - if scp ca:/etc/pacman.d/mirrorlist aawg:/tmp; then + if scp ib:/etc/pacman.d/mirrorlist aawg:/tmp; then echo 'Wait for aa sudo prompt and enter password:' ssh -t aa 'sudo mv /tmp/mirrorlist /etc/pacman.d/mirrorlist && sudo chown root:root /etc/pacman.d/mirrorlist' fi @@ -13,7 +13,7 @@ wg_aa_restore_default () { case "$(nmcli -t --fields device,state device)" in # stop aa wireguard+swgp server that listen from insp wiregurad+swgp client, start aa wg+swgp connect to ca # use /usr/bin/alacritty instead of /home/xyz/.local/bin/alacritty so script can wait until alacritty exit to run other codes following - *wg_aa:connected*) /usr/bin/alacritty -T aa --hold -e sh -c 'echo "Wait for aa sudo prompt and enter password, then manually close this window:"; ssh -t aawg "sudo systemctl stop wg-quick@wg0 && sudo systemctl start wg-quick@wg_ca"';; + *wg_aa:connected*) /usr/bin/alacritty -T aa --hold -e sh -c 'echo "Wait for aa sudo prompt and enter password, then manually close this window:"; ssh -t aawg "sudo systemctl stop wg-quick@wg0 && sudo systemctl start wg-quick@wg_ib"';; esac } @@ -33,7 +33,7 @@ if nmcli -t --fields device,state device | grep -q "^wg_$1:connected$"; then notify-send -u critical "$1 VPN disabled" else if [ "$1" = aa ]; then - /usr/bin/alacritty -T aa --hold -e sh -c 'echo "Wait for aa sudo prompt and enter password, then manually close this window"; ssh -t aawg "sudo systemctl stop wg-quick@wg_ca && sudo systemctl start wg-quick@wg0"' + /usr/bin/alacritty -T aa --hold -e sh -c 'echo "Wait for aa sudo prompt and enter password, then manually close this window"; ssh -t aawg "sudo systemctl stop wg-quick@wg_ib && sudo systemctl start wg-quick@wg0"' fi down_not_master nmcli connection down wg_master |