From 841d3f0516bab54423914edd1a016f817b58699b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 14 Jun 2009 08:43:34 +0000 Subject: [PATCH] "reload apache, if it's already running" --- doc/rpm-build/post_install.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/rpm-build/post_install.php b/doc/rpm-build/post_install.php index 81bf29ddbe..85cd209ec8 100644 --- a/doc/rpm-build/post_install.php +++ b/doc/rpm-build/post_install.php @@ -193,6 +193,10 @@ if (!file_exists($config['header']) || filesize($config['header']) < 200) // def system($config['start_webserver'].' start'); system($config['autostart_webserver']); } + else + { + system($config['start_webserver'].' reload'); + } } echo "\n"; echo "EGroupware successful installed\n";