9 lines
116 B
Bash
Executable File
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
|