|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] Re: [Xen-staging] [xen-unstable] xend: Allow for non-existen
On Thu, 2007-11-08 at 15:34 +0000, Xen staging patchbot-unstable wrote:
> # HG changeset patch
> # User Keir Fraser <keir@xxxxxxxxxxxxx>
> # Date 1194535934 0
> # Node ID 0ebac857649591de0e1b57605b054552afb03297
> # Parent c0bdfda5183d5e9dca5c9bc7a68a6cf40e3f6c58
> xend: Allow for non-existent xen-python-path binary.
> On Solaris, xen-python-path is unnecessary.
This completely breaks xend for me:
# xend start
Traceback (most recent call last):
File "/usr/sbin/xend", line 36, in ?
xpp = os.path.join(os.path.dirname(sys.argv[0], 'xen-python-path'))
TypeError: dirname() takes exactly 1 argument (2 given)
Alex
> ---
> tools/misc/xend | 13 +++++++------
> 1 files changed, 7 insertions(+), 6 deletions(-)
>
> diff -r c0bdfda5183d -r 0ebac8576495 tools/misc/xend
> --- a/tools/misc/xend Thu Nov 08 14:50:01 2007 +0000
> +++ b/tools/misc/xend Thu Nov 08 15:32:14 2007 +0000
> @@ -33,13 +33,14 @@ import time
> import time
> import commands
>
> -result = commands.getstatusoutput(os.path.join(os.path.dirname(sys.argv[0]),
> - 'xen-python-path'))
> -if result[0] != 0:
> - print >>sys.stderr, result[1]
> - sys.exit(1)
> +xpp = os.path.join(os.path.dirname(sys.argv[0], 'xen-python-path'))
> +if os.path.exists(xpp):
> + result = commands.getstatusoutput(xpp)
> + if result[0] != 0:
> + print >>sys.stderr, result[1]
> + sys.exit(1)
>
> -sys.path.append(result[1])
> + sys.path.append(result[1])
>
> from xen.xend.server import SrvDaemon
>
>
> _______________________________________________
> Xen-staging mailing list
> Xen-staging@xxxxxxxxxxxxxxxxxxx
> http://lists.xensource.com/xen-staging
>
--
Alex Williamson HP Open Source & Linux Org.
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] Re: [Xen-staging] [xen-unstable] xend: Allow for non-existent xen-python-path binary.,
Alex Williamson <=
|
|
|
|
|