diff options
author | Michales Michaloudes <korgie@gmail.com> | 2011-07-10 23:10:51 -0400 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-07-14 21:54:03 -0300 |
commit | d74fdc7745011dc6b14c6d7c5e75ad3b40ad1301 (patch) | |
tree | 7057afad07480f20d0b809dd939c570ed6a7ebd2 /audio/stops/doinst.sh | |
parent | 195a9ddcee263ae5b66853b3596a70efd0d0ef63 (diff) | |
download | slackbuilds-d74fdc7745011dc6b14c6d7c5e75ad3b40ad1301.tar.gz |
audio/stops: Added (Sound definitions for aeolus)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/stops/doinst.sh')
-rw-r--r-- | audio/stops/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/audio/stops/doinst.sh b/audio/stops/doinst.sh new file mode 100644 index 0000000000..0040669ecc --- /dev/null +++ b/audio/stops/doinst.sh @@ -0,0 +1,25 @@ +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... +} + +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 +} + +preserve_perms etc/aeolus.conf.new |