From b12a64018cba5ec1eb98b36e41cd7f0f9c22eb0b Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 31 Mar 2010 08:42:14 +0000 Subject: [PATCH] fix for fedora12 --- plc.d/httpd | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plc.d/httpd b/plc.d/httpd index 76132b3..64999cc 100755 --- a/plc.d/httpd +++ b/plc.d/httpd @@ -58,6 +58,13 @@ case "$1" in include_path=".:$DocumentRoot/planetlab/includes:$DocumentRoot/plekit/php:$DocumentRoot/generated:/etc/planetlab/php:/usr/share/plc_api/php" sed -i -e "s@[;]*include_path = \"\.:.*\"@include_path = \"$include_path\"@" $php_ini + # for php-5.3 under fedora12, otherwise issues tons of warning messages + # Set timezone in php.ini if not already there + if grep '^;date.timezone' $php_ini >& /dev/null; then + dialog 'Setting PHP timezone to GMT' + sed -i -e 's,^;date.timezone.*,date.timezone = GMT,' $php_ini + fi + # Disable default Listen directive sed -i -e '/^Listen/d' $httpd_conf -- 2.43.0