From 4db878070ac8636be9cad28bdeae6ecf168ff662 Mon Sep 17 00:00:00 2001 From: alkos333 Date: Wed, 12 May 2010 23:33:37 +0200 Subject: system/hdapsd: Added to 12.2 repository --- system/hdapsd/doinst.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 system/hdapsd/doinst.sh (limited to 'system/hdapsd/doinst.sh') diff --git a/system/hdapsd/doinst.sh b/system/hdapsd/doinst.sh new file mode 100644 index 0000000000..bfb1617ab2 --- /dev/null +++ b/system/hdapsd/doinst.sh @@ -0,0 +1,23 @@ +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... +} + +# Keep same perms on rc.hdapsd.new: +if [ -e etc/rc.d/rc.hdapsd ]; then + cp -a etc/rc.d/rc.hdapsd etc/rc.d/rc.hdapsd.new.incoming + cat etc/rc.d/rc.hdapsd.new > etc/rc.d/rc.hdapsd.new.incoming + mv etc/rc.d/rc.hdapsd.new.incoming etc/rc.d/rc.hdapsd.new +fi + +config /etc/rc.d/rc.hdapsd.new +config /etc/hdapsd.conf.new + -- cgit v1.2.3