From 77ec8dfec3015dd14ab7b0d8e4b54f08f388ee25 Mon Sep 17 00:00:00 2001 From: Nishant Limbachia Date: Tue, 11 May 2010 20:01:41 +0200 Subject: network/policyd: Added to 12.0 repository --- network/policyd/doinst.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 network/policyd/doinst.sh (limited to 'network/policyd/doinst.sh') diff --git a/network/policyd/doinst.sh b/network/policyd/doinst.sh new file mode 100644 index 0000000000000..30363934456c0 --- /dev/null +++ b/network/policyd/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.policyd.new: +if [ -e etc/rc.d/rc.policyd ]; then + cp -a etc/rc.d/rc.policyd etc/rc.d/rc.policyd.new.incoming + cat etc/rc.d/rc.policyd.new > etc/rc.d/rc.policyd.new.incoming + mv etc/rc.d/rc.policyd.new.incoming etc/rc.d/rc.policyd.new +fi + +config etc/rc.d/rc.policyd.new +config etc/policyd.conf.new + -- cgit v1.2.3