# HG changeset patch # User Heiko Schlittermann # Date 1236951974 -3600 # Node ID c22ca6b1ad5c23c212ed2139a5b951c5dbeb0d8e # Parent 8dc39221096a4d73ee73729e2eed1b7b268bc97f# Parent 3dd0ab6f59aed84956abca75f69a77f2ce918d20 merged diff -r 3dd0ab6f59ae -r c22ca6b1ad5c Makefile Binary file Makefile has changed diff -r 3dd0ab6f59ae -r c22ca6b1ad5c default --- a/default Fri Mar 13 14:03:30 2009 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -# the directory to watch -WATCHPOINTS="/dtele:/.dtele" diff -r 3dd0ab6f59ae -r c22ca6b1ad5c default.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/default.in Fri Mar 13 14:46:14 2009 +0100 @@ -0,0 +1,2 @@ +# the directory to watch +WATCHPOINTS="/dtele:/.dtele" diff -r 3dd0ab6f59ae -r c22ca6b1ad5c init.d.in Binary file init.d.in has changed diff -r 3dd0ab6f59ae -r c22ca6b1ad5c tools/unchanged --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/unchanged Fri Mar 13 14:46:14 2009 +0100 @@ -0,0 +1,9 @@ +#! /bin/bash + +file="${1?}" + +test -e "$file" || exit 0 + +found=$(head -n -1 "$file" | sha1sum | cut -f1 -d' ') +expected=$(tail -n 1 "$1" | cut -f2 -d" ") +test "$found" = "$expected"