diff options
author | Nishant Limbachia <nishant@mnspace.net> | 2010-05-12 23:31:57 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:31:57 +0200 |
commit | b48f6cb313d338a6214cd56e4e45c7c64b7537c3 (patch) | |
tree | 742597036319417706c9f79df225cfbd47c62c3a /network/awstats/doinst.sh | |
parent | 4f593e6145ffc72d2387e25075915535d5401a70 (diff) |
network/awstats: Added to 12.2 repository
Diffstat (limited to 'network/awstats/doinst.sh')
-rw-r--r-- | network/awstats/doinst.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/network/awstats/doinst.sh b/network/awstats/doinst.sh new file mode 100644 index 000000000000..98ec8af0f045 --- /dev/null +++ b/network/awstats/doinst.sh @@ -0,0 +1,22 @@ +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.heimdal: +if [ -e etc/httpd/extra/httpd-awstats.conf.new ]; then + cp -a etc/httpd/extra/httpd-awstats.conf.new etc/httpd/extra/httpd-awstats.conf.new.incoming + cat etc/httpd/extra/httpd-awstats.conf.new > etc/httpd/extra/httpd-awstats.conf.new.incoming + mv etc/httpd/extra/httpd-awstats.conf.new.incoming etc/httpd/extra/httpd-awstats.conf.new +fi + +config etc/httpd/extra/httpd-awstats.conf.new + |