From 39070a8cb67a8cadc9fd8188a6a1dc820f4f3639 Mon Sep 17 00:00:00 2001 From: Christopher Walker Date: Tue, 2 Jul 2013 22:15:44 -0300 Subject: network/ocsync: Added (file synchronizer) Signed-off-by: Niels Horn --- network/ocsync/doinst.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 network/ocsync/doinst.sh (limited to 'network/ocsync/doinst.sh') diff --git a/network/ocsync/doinst.sh b/network/ocsync/doinst.sh new file mode 100644 index 0000000000..53ac515548 --- /dev/null +++ b/network/ocsync/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... +} + +config "etc/ocsync/ocsync.conf.new" +config "etc/ocsync/ocsync_exclude.conf.new" -- cgit v1.2.3