summaryrefslogtreecommitdiffstats
path: root/system/zfs-fuse/doinst.sh
diff options
context:
space:
mode:
author Steven King <kingrst@gmail.com>2010-05-13 01:01:19 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-13 01:01:19 +0200
commitce22b1c366fc73e6e6074bd5499db24ab1f2f1c2 (patch)
treec00142e940c718c2bea929d3d13d73727b91b7ba /system/zfs-fuse/doinst.sh
parentefebcd3389c3ca493ef0af9e62105e3675ca8c21 (diff)
downloadslackbuilds-ce22b1c366fc73e6e6074bd5499db24ab1f2f1c2.tar.gz
slackbuilds-ce22b1c366fc73e6e6074bd5499db24ab1f2f1c2.tar.xz
system/zfs-fuse: Added to 13.0 repository
Diffstat (limited to 'system/zfs-fuse/doinst.sh')
-rw-r--r--system/zfs-fuse/doinst.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/system/zfs-fuse/doinst.sh b/system/zfs-fuse/doinst.sh
new file mode 100644
index 0000000000..c298908b52
--- /dev/null
+++ b/system/zfs-fuse/doinst.sh
@@ -0,0 +1,24 @@
+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.zfs-fuse.new
+