summaryrefslogtreecommitdiffstats
path: root/development/quilt/doinst.sh
diff options
context:
space:
mode:
author Arun Prasannan2010-05-11 20:00:30 +0200
committer Robby Workman2010-05-11 20:00:30 +0200
commit3ece659f38de2d0cb7861951957d854f1c952dc6 (patch)
tree9a0b30be8f657abdd483c46a0fcec052558d20e9 /development/quilt/doinst.sh
parentcb3f56fc856ec4d1d90ba767eb6a9c7b0ece45b4 (diff)
downloadslackbuilds-3ece659f38de2d0cb7861951957d854f1c952dc6.tar.gz
development/quilt: Added to 12.0 repository
Diffstat (limited to 'development/quilt/doinst.sh')
-rw-r--r--development/quilt/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/development/quilt/doinst.sh b/development/quilt/doinst.sh
new file mode 100644
index 0000000000..c4d4cf05a9
--- /dev/null
+++ b/development/quilt/doinst.sh
@@ -0,0 +1,15 @@
+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/quilt.quiltrc.new
+