workspaces/ssh/ssh_blocker.sh

9 lines
116 B
Bash
Raw Normal View History

#!/bin/bash
# Example: block push or connections to some hosts
2025-04-18 19:15:32 +01:00
if [[ "$*" != *"alps"* ]]; then
exit 1
fi
exit 0