Files
DefaultVPN/deploy/data/macos/check_install.sh
2025-08-11 15:30:57 +03:00

6 lines
122 B
Bash
Executable File

#!/bin/bash
if [ -d "/Applications/DefaultVPN.app" ] || pgrep -x "DefaultVPN-service" >/dev/null; then
exit 1
fi
exit 0