Commit da870a56 authored by Vincent Pelletier's avatar Vincent Pelletier

Make pidfile path absolute.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24536 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 58035912
......@@ -712,6 +712,8 @@ if config_file_name is not None:
if option_id not in options.__dict__ and hasattr(module, option_id):
setattr(options, option_id, getattr(module, option_id))
if options.pidfile_name is not None:
options.pidfile_name = os.path.abspath(options.pidfile_name)
if options.logfile_name is not None:
options.logfile_name = os.path.abspath(options.logfile_name)
if options.status_file is not None:
......
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