aboutsummaryrefslogtreecommitdiff
path: root/network/unfs3/doinst.sh
diff options
context:
space:
mode:
authorMenno Duursma <druiloor@zonnet.nl>2010-05-11 15:01:38 +0200
committerMichiel van Wessem <michiel@slackbuilds.org>2010-05-11 15:01:38 +0200
commit510be39fd321d9fb0532b499b3cdf23dbe742623 (patch)
tree69956883f252471411d0da4744a9c04c324cc0be /network/unfs3/doinst.sh
parent747e62b37ba05521cfe1042fc2d517bdbc2e9e8c (diff)
network/unfs3: Initial import
Diffstat (limited to 'network/unfs3/doinst.sh')
-rw-r--r--network/unfs3/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/network/unfs3/doinst.sh b/network/unfs3/doinst.sh
new file mode 100644
index 0000000000000..e61b40abaa3d7
--- /dev/null
+++ b/network/unfs3/doinst.sh
@@ -0,0 +1,16 @@
+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...
+}
+
+# Add this package's version of boot-script, if only for documentation
+config etc/rc.d/rc.unfsd.new
+