Displaying 2 results from an estimated 2 matches for "xen_configdir".
Did you mean:
xen_config_dir
2010 May 16
2
[PATCH][RESENT] xend: fix bug in xend option parsing
...t_xend_tcp_xmlrpc_server_ssl_key_file(self):
name = ''xend-tcp-xmlrpc-server-ssl-key-file''
file = self.get_config_string(name)
- if os.path.dirname(file) == "":
+ if file and os.path.dirname(file) == "":
file = auxbin.xen_configdir() + ''/'' + file;
- if not os.path.exists(file):
+ if file and not os.path.exists(file):
raise XendError("invalid xend config %s: directory ''%s'' does not exist" % (name, file))
return file
def get_xend_tcp_xmlrpc_...
2010 Jun 25
0
Bug#587090: xen-utils-4.0: Exception starting xend ('NoneType' object has no attribute 'rfind')
...16:54:04 2010 +0200
@@ -207,18 +207,18 @@
def get_xend_tcp_xmlrpc_server_ssl_key_file(self):
name = 'xend-tcp-xmlrpc-server-ssl-key-file'
file = self.get_config_string(name)
- if os.path.dirname(file) == "":
+ if file and os.path.dirname(file) == "":
file = auxbin.xen_configdir() + '/' + file;
- if not os.path.exists(file):
+ if file and not os.path.exists(file):
raise XendError("invalid xend config %s: directory '%s' does not exist" % (name, file))
return file
def get_xend_tcp_xmlrpc_server_ssl_cert_file(self):
name = 'xend-tcp-xmlrpc...