From b291fd0506aa875e999851d1b5ac983c51522b1e Mon Sep 17 00:00:00 2001 From: Axel Scheepers Date: Sun, 8 Apr 2012 10:53:20 -0400 Subject: network/bird: Added (internet routing suite) Signed-off-by: dsomero --- network/bird/doinst.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 network/bird/doinst.sh (limited to 'network/bird/doinst.sh') diff --git a/network/bird/doinst.sh b/network/bird/doinst.sh new file mode 100644 index 000000000000..07dc704305a2 --- /dev/null +++ b/network/bird/doinst.sh @@ -0,0 +1,25 @@ +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/bird.conf.new -- cgit v1.2.3