summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-misc/awstats/files/awstats-7.1-gentoo.diff')
-rw-r--r--www-misc/awstats/files/awstats-7.1-gentoo.diff21
1 files changed, 0 insertions, 21 deletions
diff --git a/www-misc/awstats/files/awstats-7.1-gentoo.diff b/www-misc/awstats/files/awstats-7.1-gentoo.diff
deleted file mode 100644
index a58ed48..0000000
--- a/www-misc/awstats/files/awstats-7.1-gentoo.diff
+++ /dev/null
@@ -1,21 +0,0 @@
---- awstats-6.3.orig/tools/awstats_configure.pl 2005-01-24 09:28:43.980923725 -0500
-+++ awstats-6.3/tools/awstats_configure.pl 2005-01-24 09:28:52.034571769 -0500
-@@ -658,6 +658,18 @@
- print "\n-----> Restart Web server with '$command'\n";
- my $ret=`$command`;
- print "$ret";
-+ } elsif (-f "/etc/gentoo-release") {
-+ my $command;
-+ if (-x "/etc/init.d/apache2") {
-+ $command="/etc/init.d/apache2 graceful";
-+ } else {
-+ print "\n-----> Don't forget to restart manually your web server\n";
-+ }
-+ if ($command != "") {
-+ print "\n-----> Restart Web server with '$command'\n";
-+ my $ret=`$command`;
-+ print "$ret";
-+ }
- } elsif (-x "/sbin/service") {
- # We are not on debian
- my $command="/sbin/service httpd restart";