diff options
author | Menno Duursma <druiloor@zonnet.nl> | 2010-05-11 15:01:36 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-11 15:01:36 +0200 |
commit | 950dbcc826ae0cf24cca4dff16f23614b790b90b (patch) | |
tree | f6730cd1234678f23faaf446038bcd9a2b62f22d /network/suphp/doinst.sh | |
parent | 19a247802d7c1909a4757ae952ea31255f6a11b3 (diff) | |
download | slackbuilds-950dbcc826ae0cf24cca4dff16f23614b790b90b.tar.gz |
network/suphp: Initial import
Diffstat (limited to 'network/suphp/doinst.sh')
-rw-r--r-- | network/suphp/doinst.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/network/suphp/doinst.sh b/network/suphp/doinst.sh new file mode 100644 index 0000000000..3f513b956f --- /dev/null +++ b/network/suphp/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... +} + +# Add a sample config-file, if only for documentation +config etc/apache/suphp.conf.new + |