workspaces/ssh/ssh_blocker.sh
2025-04-18 19:15:32 +01:00

9 lines
116 B
Bash
Executable File

#!/bin/bash
# Example: block push or connections to some hosts
if [[ "$*" != *"alps"* ]]; then
exit 1
fi
exit 0