diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:52 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:52 +0200 |
commit | 4a3d9da5c5fcaebd041af7a53bc849a814f3802d (patch) | |
tree | ea685db32134385fee2aace4a9db93d90c10d036 /audio/mpd/doinst.sh | |
parent | 2157c6dac7ca38861294038db7d2d04553a7094c (diff) |
audio/mpd: Moved from multimedia
Diffstat (limited to 'audio/mpd/doinst.sh')
-rw-r--r-- | audio/mpd/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/audio/mpd/doinst.sh b/audio/mpd/doinst.sh new file mode 100644 index 000000000000..569f1a04a1d6 --- /dev/null +++ b/audio/mpd/doinst.sh @@ -0,0 +1,14 @@ +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... +} + +config etc/mpd.conf.new |