summaryrefslogtreecommitdiffstats
path: root/network/mod_fcgid/doinst.sh
diff options
context:
space:
mode:
author Adis Nezirovic2010-05-11 15:01:31 +0200
committer Michiel van Wessem2010-05-11 15:01:31 +0200
commit4c82c26e60d40fdb758b9b64b94f6c29007a1555 (patch)
tree78165f088cbed0f54d128efb0e1cae3092376a2a /network/mod_fcgid/doinst.sh
parent2cc630e38f72150f8427e6b8f2a0080749039ebb (diff)
downloadslackbuilds-4c82c26e60d40fdb758b9b64b94f6c29007a1555.tar.gz
network/mod_fcgid: Initial import
Diffstat (limited to 'network/mod_fcgid/doinst.sh')
-rw-r--r--network/mod_fcgid/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/network/mod_fcgid/doinst.sh b/network/mod_fcgid/doinst.sh
new file mode 100644
index 0000000000..7f288c2c10
--- /dev/null
+++ b/network/mod_fcgid/doinst.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+copy_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...
+}
+
+copy_config etc/apache2/extra/httpd-fcgid.conf.new