[Erp5-report] r24536 - /erp5/trunk/products/TIDStorage/bin/server.py

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Nov 10 11:07:38 CET 2008


Author: vincent
Date: Mon Nov 10 11:07:36 2008
New Revision: 24536

URL: http://svn.erp5.org?rev=24536&view=rev
Log:
Make pidfile path absolute.

Modified:
    erp5/trunk/products/TIDStorage/bin/server.py

Modified: erp5/trunk/products/TIDStorage/bin/server.py
URL: http://svn.erp5.org/erp5/trunk/products/TIDStorage/bin/server.py?rev=24536&r1=24535&r2=24536&view=diff
==============================================================================
--- erp5/trunk/products/TIDStorage/bin/server.py [utf8] (original)
+++ erp5/trunk/products/TIDStorage/bin/server.py [utf8] Mon Nov 10 11:07:36 2008
@@ -712,6 +712,8 @@
     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:




More information about the Erp5-report mailing list