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 /multimedia/mpd/doinst.sh | |
parent | 2157c6dac7ca38861294038db7d2d04553a7094c (diff) |
audio/mpd: Moved from multimedia
Diffstat (limited to 'multimedia/mpd/doinst.sh')
-rw-r--r-- | multimedia/mpd/doinst.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/multimedia/mpd/doinst.sh b/multimedia/mpd/doinst.sh deleted file mode 100644 index 569f1a04a1d6a..0000000000000 --- a/multimedia/mpd/doinst.sh +++ /dev/null @@ -1,14 +0,0 @@ -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 |