Commit e952237e authored by Alain Takoudjou's avatar Alain Takoudjou

temporary diseable apache gracefull restart

parent 2f20db4c
...@@ -138,7 +138,8 @@ class Recipe(GenericBaseRecipe): ...@@ -138,7 +138,8 @@ class Recipe(GenericBaseRecipe):
with open(self.options['pid-file']) as pid_file: with open(self.options['pid-file']) as pid_file:
pid = int(pid_file.read().strip(), 10) pid = int(pid_file.read().strip(), 10)
try: try:
os.kill(pid, signal.SIGUSR1) # Graceful restart # os.kill(pid, signal.SIGUSR1) # Graceful restart
pass
except OSError: except OSError:
pass pass
return path_list return path_list
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment