From ff9b7ad258b1f6f0b13e8584ce1213f997e5253a Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Tue, 11 May 2010 15:01:33 +0200 Subject: network/openntpd: Initial import --- network/openntpd/doinst.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 network/openntpd/doinst.sh (limited to 'network/openntpd/doinst.sh') diff --git a/network/openntpd/doinst.sh b/network/openntpd/doinst.sh new file mode 100644 index 0000000000..d1589f1e71 --- /dev/null +++ b/network/openntpd/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.ntpd.new: +if [ -e etc/rc.d/rc.ntpd ]; then + cp -a etc/rc.d/rc.ntpd etc/rc.d/rc.ntpd.new.incoming + cat etc/rc.d/rc.ntpd.new > etc/rc.d/rc.ntpd.new.incoming + mv etc/rc.d/rc.ntpd.new.incoming etc/rc.d/rc.ntpd.new +fi + +config etc/rc.d/rc.ntpd.new +config etc/ntpd.conf.new + -- cgit v1.2.3