From 0d1c10dc994de1185ac59b04721bc04d8e8e3d9e Mon Sep 17 00:00:00 2001
From: Nick Andriopoulos <nand@hexblot.com>
Date: Tue, 5 Apr 2016 14:55:04 +0200
Subject: [PATCH] Comments out special handling for reloading PHP-FPM on
 CentOS7, refs #3739

---
 server/mods-available/web_module.inc.php | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/server/mods-available/web_module.inc.php b/server/mods-available/web_module.inc.php
index 36e139175a..3ba0cfbe43 100644
--- a/server/mods-available/web_module.inc.php
+++ b/server/mods-available/web_module.inc.php
@@ -269,13 +269,15 @@ class web_module {
 						$initcommand = '/sbin/start-stop-daemon --stop --signal USR2 --quiet --pidfile /var/run/php5-fpm.pid --name php5-fpm';
 					}
 					// And the next workaround, php-fpm reloads in centos 7 downt work as well.
+                                        /*
 					if(preg_match('/^ID=centos/m', $tmp) && preg_match('/^VERSION_ID="7"/m', $tmp)) {
 						$initcommand = 'systemctl restart php-fpm.service';
 					}
+                                        */
 					unset($tmp);
 				}	
 			}
-			
+			/*
 			if($action == 'reload') {
 				// And the next workaround, php-fpm reloads in centos 7 downt work as well.
 				if(file_exists('/etc/os-release')) {
@@ -287,6 +289,7 @@ class web_module {
 					unset($tmp);
 				}
 			}
+                        */
 		}
 
 		$retval = array('output' => '', 'retval' => 0);
-- 
GitLab