diff options
author | David Woodfall <dave@dawoodfall.net> | 2013-02-10 10:25:51 -0500 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2013-02-10 10:25:51 -0500 |
commit | 58f15a4eab5f0f40c94092be086f1711ffa59f63 (patch) | |
tree | 177805f586dbf8e7b6d8094cbefa97a7cd769893 /audio/nas/doinst.sh | |
parent | 65dc4c31b379c50a3b4036bd4c67ef9c0394361f (diff) |
audio/nas: Minor fixes, added rc.* file.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/nas/doinst.sh')
-rw-r--r-- | audio/nas/doinst.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/audio/nas/doinst.sh b/audio/nas/doinst.sh new file mode 100644 index 000000000000..ff00c6585ea5 --- /dev/null +++ b/audio/nas/doinst.sh @@ -0,0 +1,26 @@ +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/rc.d/rc.nasd.new + |