summaryrefslogtreecommitdiffstats
path: root/system/davfs2/doinst.sh
diff options
context:
space:
mode:
author Chris Abela <chris.abela@maltats.com>2010-05-13 01:00:45 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-13 01:00:45 +0200
commite9baf9a07c6c94a987120475b0538fc7cd3410d6 (patch)
tree22fb80fcc59fbbfbc10d377e9eb503010dc9b88a /system/davfs2/doinst.sh
parentcfe2a8ee319567c40577aa65538fec3bfe50e51d (diff)
downloadslackbuilds-e9baf9a07c6c94a987120475b0538fc7cd3410d6.tar.gz
slackbuilds-e9baf9a07c6c94a987120475b0538fc7cd3410d6.tar.xz
system/davfs2: Added to 13.0 repository
Diffstat (limited to 'system/davfs2/doinst.sh')
-rw-r--r--system/davfs2/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/system/davfs2/doinst.sh b/system/davfs2/doinst.sh
new file mode 100644
index 0000000000..73ce3793de
--- /dev/null
+++ b/system/davfs2/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...
+}
+
+config etc/davfs2/davfs2.conf.new
+config etc/davfs2/secrets.new
+