From d74fdc7745011dc6b14c6d7c5e75ad3b40ad1301 Mon Sep 17 00:00:00 2001 From: Michales Michaloudes Date: Sun, 10 Jul 2011 23:10:51 -0400 Subject: audio/stops: Added (Sound definitions for aeolus) Signed-off-by: dsomero --- audio/stops/doinst.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 audio/stops/doinst.sh (limited to 'audio/stops/doinst.sh') diff --git a/audio/stops/doinst.sh b/audio/stops/doinst.sh new file mode 100644 index 0000000000..0040669ecc --- /dev/null +++ b/audio/stops/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/aeolus.conf.new -- cgit v1.2.3