Files

10 lines
230 B
Bash
Executable File

#!/bin/sh
set -eu
if [ "$1" = remove ]; then
systemctl stop vpn-egress-sync.path sing-box.service >/dev/null 2>&1 || true
systemctl disable vpn-egress-sync.path vpn-egress-guard.service >/dev/null 2>&1 || true
fi
exit 0