From 56707bf14ab16457b0292c549061ad3903b5b81d Mon Sep 17 00:00:00 2001 From: Zbigniew Baniewski Date: Sat, 8 Jan 2011 16:47:29 -0200 Subject: audio/bristol: Added (Synthesiser Emulations on Linux) Signed-off-by: Niels Horn --- audio/bristol/doinst.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 audio/bristol/doinst.sh (limited to 'audio/bristol/doinst.sh') diff --git a/audio/bristol/doinst.sh b/audio/bristol/doinst.sh new file mode 100644 index 0000000000000..19a6ff6ac8545 --- /dev/null +++ b/audio/bristol/doinst.sh @@ -0,0 +1,13 @@ +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... +} + -- cgit v1.2.3