Skip to content

Instantly share code, notes, and snippets.

@jpmens
Created June 25, 2019 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jpmens/e2bbf337f373fcc8a776c9135bebce83 to your computer and use it in GitHub Desktop.
Save jpmens/e2bbf337f373fcc8a776c9135bebce83 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 "Please do not disturb; party in progress"
exit $OK
fi
echo "Nie wieder Alkohol!"
exit $CRIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment