From mboxrd@z Thu Jan 1 00:00:00 1970 From: Min Lee Subject: Bug in xendomains script? Date: Fri, 18 Jun 2010 10:13:52 -0400 Message-ID: <4C1B7F20.4000800@gatech.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Hi, I think this in xendomains script might be a bug. It seems like it checks errors from 'xm list', but it didn't work in my case. 'xm list' works fine, but it exits the script. if `xm list &> /dev/null` then exit 0 fi So, I've changed it to.. if [ "`xm list &> /dev/null`" != "" ]; then exit 0 fi Now it's working... seems like a small bug.. thanks Min