Skip to content

Instantly share code, notes, and snippets.

@FlorianHeigl
Forked from jpmens/icinga.sh
Last active June 25, 2019 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FlorianHeigl/50f926ce053ca3424feee08975857d9e to your computer and use it in GitHub Desktop.
Save FlorianHeigl/50f926ce053ca3424feee08975857d9e to your computer and use it in GitHub Desktop.
#!/bin/sh
OK=0
CRIT=2
tics=$(date +%s)
if [ "$tics" -gt 1561741200 -a "$tics" -lt 1561914000 ]; then
# From Friday 17:00Z to Sunday: STFU
echo "OK - Please do not disturb; party in progress"
exit $OK
fi
echo "CRIT - Nie wieder Alkohol!"
exit $CRIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment