diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-06-15 05:09:46 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-15 05:09:46 -0500 |
commit | b6304352d73100269888203a2861047e5955068a (patch) | |
tree | 86343dcc26e9483e100d0f18688514197d7604dd /development/viewvc/doinst.sh | |
parent | b951c756c68a42a4bd81d06e0277051e8ad2f965 (diff) | |
download | slackbuilds-b6304352d73100269888203a2861047e5955068a.tar.gz |
development/viewvc: Added (cvs/svn browser interface)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development/viewvc/doinst.sh')
-rw-r--r-- | development/viewvc/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
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 + |