One more on this one... the wrapper in /usr/sbin/xenman is incorrectly
setting the xendir variable. It is picking up /usr/lib/xen-ioemu-3.0 as
xendir, when it is actually /usr/lib/xen.  This, in tern, means that the
consoles don't work, as xenconsole can't be located.

Here is what the wrapper should look like:


#!/bin/bash
#
# Wrapper script to start xenman
#

if [ $1 == "--xendir" ]; then
         echo -n `ls -d /usr/lib/xen /usr/lib/xen-* | sort | head -n1`
         exit 0
fi
PYTHONPATH=$PYTHONPATH:`xenman --xendir` /lib/python python 
/usr/share/xenman/src/xenman.py


Regards,
     --Matt

-- 
doesn't manage local machine
https://bugs.launchpad.net/bugs/76500
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to