summaryrefslogtreecommitdiffstats
path: root/network/mozplugger/doinst.sh
diff options
context:
space:
mode:
author Michael Wagner <druiloor@zonnet.nl>2010-05-11 15:01:31 +0200
committer Michiel van Wessem <michiel@slackbuilds.org>2010-05-11 15:01:31 +0200
commit5d6e706495229d4f67724cd1dbce89437c15f337 (patch)
tree5c734820e98cea9e5a591f63166b625f560a9994 /network/mozplugger/doinst.sh
parentba122a081aee861e68809372b535a5c92cfa5b80 (diff)
downloadslackbuilds-5d6e706495229d4f67724cd1dbce89437c15f337.tar.gz
slackbuilds-5d6e706495229d4f67724cd1dbce89437c15f337.tar.xz
network/mozplugger: Initial import
Diffstat (limited to 'network/mozplugger/doinst.sh')
-rw-r--r--network/mozplugger/doinst.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/network/mozplugger/doinst.sh b/network/mozplugger/doinst.sh
new file mode 100644
index 0000000000..6122924a10
--- /dev/null
+++ b/network/mozplugger/doinst.sh
@@ -0,0 +1,14 @@
+# Handle configuration files
+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...
+}
+# List of configuration files (they should end in .new)
+config etc/mozpluggerrc.new