-rwxr-xr-x | core/opiealarm/opieatd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/opiealarm/opieatd b/core/opiealarm/opieatd index fc2d421..34dfb2e 100755 --- a/core/opiealarm/opieatd +++ b/core/opiealarm/opieatd @@ -11,23 +11,23 @@ mkdir -p /var/spool/at while true; do while read </var/spool/at/trigger dummy; do FILES=`ls /var/spool/at/[0-9]* 2>/dev/null` if [ -z "$FILES" ]; then - echo "clear resume at" + # echo "clear resume at" echo "" >$timefile else for i in "$FILES"; do - echo "File = $i" + # echo "File = $i" unixtime=`basename $i | cut -c1-10` pid=`basename $i | cut -c12-` if [ -d /proc/$pid ]; then - echo "Datestring = $unixtime" + # echo "Datestring = $unixtime" echo "$unixtime" >$timefile else rm -f $i fi done fi |