summaryrefslogtreecommitdiff
path: root/system/pommed/doinst.sh
diff options
context:
space:
mode:
authorAlan Hicks <alan@lizella.net>2010-05-11 20:02:05 +0200
committerRobby Workman <rworkman@slackbuilds.org>2010-05-11 20:02:05 +0200
commit96025eb035a7f510c30a01b923d644ae56479bc7 (patch)
tree376901f451d6f51611d7a543228323f817812bd1 /system/pommed/doinst.sh
parent371a877069a62cab6ea2aabab8a22d3fea0a2b3a (diff)
downloadslackbuilds-96025eb035a7f510c30a01b923d644ae56479bc7.tar.gz
system/pommed: Added to 12.0 repository
Diffstat (limited to 'system/pommed/doinst.sh')
-rw-r--r--system/pommed/doinst.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/system/pommed/doinst.sh b/system/pommed/doinst.sh
new file mode 100644
index 0000000000..ee1cdba8d9
--- /dev/null
+++ b/system/pommed/doinst.sh
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+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...
+}
+
+# Keep same perms on rc.pommed.new:
+if [ -e etc/rc.d/rc.pommed ]; then
+ cp -a etc/rc.d/rc.pommed etc/rc.d/rc.pommed.new.incoming
+ cat etc/rc.d/rc.pommed.new > etc/rc.d/rc.pommed.new.incoming
+ mv etc/rc.d/rc.pommed.new.incoming etc/rc.d/rc.pommed.new
+fi
+
+config etc/rc.d/rc.pommed.new
+config etc/pommed.conf.new
+config etc/dbus-1/system.d/pommed.conf.new
+