On 05/14/2012 01:21 AM, Osier Yang wrote:
> $LISTFILE is created even no domain is running, and the empty
> $LISTFILE could cause improper service status.
> 
>     stoped ,with saved guests

Do we really say "stoped", or is that a typo in the commit message?

> 
> Which is not right, as there is no domain was saved.
> ---
>  tools/libvirt-guests.init.sh |   42 
> +++++++++++++++++++++++-------------------
>  1 files changed, 23 insertions(+), 19 deletions(-)
> 

Missing quotes:

> +    if [ -s $LISTFILE ]; then

if [ -s "$LISTFILE" ]; then


> +    else
> +        rm -f $LISTFILE

rm -f "$LISTFILE"

Looks like the rest of the patch is just reindentation after the added
if statement; ACK with the quoting fixes.

-- 
Eric Blake   [email protected]    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature

--
libvir-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/libvir-list

Reply via email to