Displaying 1 result from an estimated 1 matches for "283c283".
2011 Aug 31
0
xendomains not starting at boot
...e actual command executed turns out to be:
XMC=`xm create --quiet --defconfig $dom`
where dom=/etc/xen/auto/fszele
If I issue the command from the command line, the dom starts as
expected. After some debugging on /etc/init.d/xendomains it turns out to
work if I change this line:
diff xendomains*
283c283
< XMC=$(xm create --quiet --defconfig $dom)
---
> XMC=`xm create --quiet --defconfig $dom`
or
diff xendomains*
283c283
< XMC=`echo debug;xm create --quiet --defconfig $dom`
---
> XMC=`xm create --quiet --defconfig $dom`
So I fix...