debuggers.hg
changeset 10955:164ad1411255
remove '=' between command line name/argument.
ease parsing without getopt.
Signed-off-by: Vincent Hanquez <vincent@xensource.com>
ease parsing without getopt.
Signed-off-by: Vincent Hanquez <vincent@xensource.com>
author | vhanquez@gwig.uk.xensource.com |
---|---|
date | Thu Aug 03 13:44:05 2006 +0000 (2006-08-03) |
parents | 43ff88825b1a |
children | 7ff6020e4758 |
files | tools/misc/xend |
line diff
1.1 --- a/tools/misc/xend Thu Aug 03 14:20:45 2006 +0100 1.2 +++ b/tools/misc/xend Thu Aug 03 13:44:05 2006 +0000 1.3 @@ -84,7 +84,7 @@ def check_user(): 1.4 1.5 def start_xenstored(): 1.6 XENSTORED_TRACE = os.getenv("XENSTORED_TRACE") 1.7 - cmd = "xenstored --pid-file=/var/run/xenstore.pid" 1.8 + cmd = "xenstored --pid-file /var/run/xenstore.pid" 1.9 if XENSTORED_TRACE: 1.10 cmd += " -T /var/log/xenstored-trace.log" 1.11 s,o = commands.getstatusoutput(cmd)