summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xcore/opiealarm/opieatd6
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
@@ -14,17 +14,17 @@ while true; do
14 FILES=`ls /var/spool/at/[0-9]* 2>/dev/null` 14 FILES=`ls /var/spool/at/[0-9]* 2>/dev/null`
15 15
16 if [ -z "$FILES" ]; then 16 if [ -z "$FILES" ]; then
17 echo "clear resume at" 17 # echo "clear resume at"
18 echo "" >$timefile 18 echo "" >$timefile
19 else 19 else
20 for i in "$FILES"; do 20 for i in "$FILES"; do
21 echo "File = $i" 21 # echo "File = $i"
22 22
23 unixtime=`basename $i | cut -c1-10` 23 unixtime=`basename $i | cut -c1-10`
24 pid=`basename $i | cut -c12-` 24 pid=`basename $i | cut -c12-`
25 25
26 if [ -d /proc/$pid ]; then 26 if [ -d /proc/$pid ]; then
27 echo "Datestring = $unixtime" 27 # echo "Datestring = $unixtime"
28 echo "$unixtime" >$timefile 28 echo "$unixtime" >$timefile
29 else 29 else
30 rm -f $i 30 rm -f $i