7 lines
198 B
Bash
7 lines
198 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
# Log out and remove any firewall rules
|
|
mullvad-setup reset-firewall || echo "Failed to reset firewall"
|
|
mullvad-setup remove-device || echo "Failed to remove device from account"
|