From bcw142@21:1/145 to All on Sunday, November 06, 2016 07:39:00
For those of you running mis it needs to be restarted to read the new time
when the time changes like this morning (2AM). At least in my case under
Linux I had to do that, likely the same for all versions. To restart I used:
#! /bin/bash
# Kill mis daemon:
echo "Killing mis daemon process"
kill $(pidof mis | awk '{print $1}')
# Check for BUSY semaphore sitting in /mystic/semaphore:
echo "Checking for mis.bsy semaphore"
[ -f /mystic/semaphore/mis.bsy ] && rm -f /mystic/semaphore/mis.bsy || echo "mis.bsy already not present"
# Re-exec mis in daemon mode:
cd /mystic && sudo ./mis -d &