From b6304352d73100269888203a2861047e5955068a Mon Sep 17 00:00:00 2001 From: Niels Horn Date: Tue, 15 Jun 2010 05:09:46 -0500 Subject: development/viewvc: Added (cvs/svn browser interface) Signed-off-by: Robby Workman --- development/viewvc/doinst.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 development/viewvc/doinst.sh (limited to 'development/viewvc/doinst.sh') diff --git a/development/viewvc/doinst.sh b/development/viewvc/doinst.sh new file mode 100644 index 0000000000..93cffbdb35 --- /dev/null +++ b/development/viewvc/doinst.sh @@ -0,0 +1,15 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +find etc/viewvc/ -name *.new | while read cfg ; do config $cfg ; done + -- cgit v1.2.3