From bbbed6b77af2c23f7cb66cee4ee6a2e1340d113c Mon Sep 17 00:00:00 2001 From: Alan Alberghini <414N@slacky.it> Date: Thu, 13 May 2010 00:59:23 +0200 Subject: misc/g15daemon: Added to 13.0 repository --- misc/g15daemon/doinst.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 misc/g15daemon/doinst.sh (limited to 'misc/g15daemon/doinst.sh') diff --git a/misc/g15daemon/doinst.sh b/misc/g15daemon/doinst.sh new file mode 100644 index 0000000000..ec1722b4b5 --- /dev/null +++ b/misc/g15daemon/doinst.sh @@ -0,0 +1,22 @@ +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.g15daemon.new: +if [ -e etc/rc.d/rc.g15daemon ]; then + cp -a etc/rc.d/rc.g15daemon etc/rc.d/rc.g15daemon.new.incoming + cat etc/rc.d/rc.g15daemon.new > etc/rc.d/rc.g15daemon.new.incoming + mv etc/rc.d/rc.g15daemon.new.incoming etc/rc.d/rc.g15daemon.new +fi + +config etc/rc.d/rc.g15daemon.new + -- cgit v1.2.3