audio/TiMidity++: Fixed (Keep perms on rc.* file)

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
dsomero 2012-09-27 20:12:53 -04:00 committed by Robby Workman
parent 9ae9ec421e
commit b9b587d751
2 changed files with 16 additions and 4 deletions

View file

@ -7,7 +7,7 @@
PRGNAM="TiMidity++"
VERSION="2.13.2"
BUILD=${BUILD:-5}
BUILD=${BUILD:-6}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then

View file

@ -4,12 +4,24 @@ config() {
# 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
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/timidity.cfg.new
config etc/rc.d/rc.timidity.new
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
}
config etc/timidity.cfg.new
preserve_perms etc/rc.d/rc.timidity.new