止め忘れを防止したい

止め忘れを防止するのは、LinuxのコマンドAtで実装しました。

at -l | while read jobID b;do atrm $jobID;done >> /reboot.log 2>&1
at now + 6 hours -f /home/ec2-user/manage/after6H.sh >> reboot.log 2>&1

After6H.shの中で、停止するロジックをいれました。