From: Thierry Parmentelat Date: Wed, 31 Mar 2010 08:42:14 +0000 (+0000) Subject: fix for fedora12 X-Git-Tag: myplc-4.3-45~1 X-Git-Url: http://git.onelab.eu/?p=myplc.git;a=commitdiff_plain;h=b12a64018cba5ec1eb98b36e41cd7f0f9c22eb0b fix for fedora12 --- 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