Skip to content

Instantly share code, notes, and snippets.

@red-stripe
Created July 14, 2017 01:53
Show Gist options
  • Save red-stripe/ac1d459673a3839b7e8b0483a877229c to your computer and use it in GitHub Desktop.
Save red-stripe/ac1d459673a3839b7e8b0483a877229c to your computer and use it in GitHub Desktop.
Checkin script
#!/bin/bash
checkin='/opt/diylabcheck/'
online='online'
lastseen='lastseen'
printf "Verifying if $checkin$online exist... \n"
if [ -f $checkin$online ]
then
echo "Online"
rm -f $checkin$lastseen
mv $checkin$online $checkin$lastseen
else
echo "FAIL - lastseen: $(cat $checkin$lastseen)"
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment