diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:53 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:53 +0200 |
commit | 9f10e0c3785ea0e1468e4c971f0428a5c72e56a8 (patch) | |
tree | 7add631e68cb71c1c6121f9c423e778d2594aa13 /audio/mt-daapd/doinst.sh | |
parent | 5d0a20d58b80ecd8d783990bfc1ebd25596725e3 (diff) | |
download | slackbuilds-9f10e0c3785ea0e1468e4c971f0428a5c72e56a8.tar.gz |
audio/mt-daapd: Moved from multimedia
Diffstat (limited to 'audio/mt-daapd/doinst.sh')
-rw-r--r-- | audio/mt-daapd/doinst.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/audio/mt-daapd/doinst.sh b/audio/mt-daapd/doinst.sh new file mode 100644 index 0000000000..2dd352a515 --- /dev/null +++ b/audio/mt-daapd/doinst.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +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... +} + +# Keep same perms on rc.mt-daapd.new: +if [ -e etc/rc.d/rc.mt-daapd ]; then + cp -a etc/rc.d/rc.mt-daapd etc/rc.d/rc.hald.new.incoming + cat etc/rc.d/rc.mt-daapd.new > etc/rc.d/rc.hald.new.incoming + mv etc/rc.d/rc.mt-daapd.new.incoming etc/rc.d/rc.hald.new +fi + +config etc/rc.d/rc.mt-daapd.new +config etc/mt-daapd.conf.new |