Subversion Repositories alarming

Compare Revisions

No changes between revisions

Regard whitespace Rev 2 → Rev 3

/trunk/Server/motion/motion_cb_detect
0,0 → 1,16
#!/bin/bash
 
DIR=$( dirname "$0" )
 
# Only report every 30 seconds
DETFIL="/tmp/last_motion_detect.ts"
if [ -f "$DETFIL" ]; then
if test "`find "$DETFIL" -mmin -0,5`"; then
# Neuer als 30 Sekunden. Nix machen
exit
fi
fi
touch "$DETFIL"
 
# Execute detect.d/*
for i in "$DIR"/detect.d/*; do ( "$i" &) ; done
Property changes:
Added: svn:executable
+*
\ No newline at end of property