summaryrefslogtreecommitdiffstats
path: root/audio/nas/doinst.sh
diff options
context:
space:
mode:
author David Woodfall2013-02-10 16:25:51 +0100
committer dsomero2013-02-10 16:25:51 +0100
commit58f15a4eab5f0f40c94092be086f1711ffa59f63 (patch)
tree177805f586dbf8e7b6d8094cbefa97a7cd769893 /audio/nas/doinst.sh
parent65dc4c31b379c50a3b4036bd4c67ef9c0394361f (diff)
downloadslackbuilds-58f15a4eab5f0f40c94092be086f1711ffa59f63.tar.gz
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.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/audio/nas/doinst.sh b/audio/nas/doinst.sh
new file mode 100644
index 0000000000..ff00c6585e
--- /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
+