Ian Campbell writes ("[PATCH OSSTEST] ts-xen-install: Rewrite /etc/hosts to 
comment out 127.0.1.1 entry"):
> +         s|^127.0.1.1|#$&|;

I think you mean

    s|^\Q127.0.1.1\E\b|#$&|;

or

    s|^127\.0\.1\.1\b|#$&|;

(I have tested both of these ad-hoc.)
    
Also

> +        my $hn = $ho->{Name};

This seems unused ?

With those two this corrected.

Acked-by: Ian Jackson <ian.jack...@eu.citrix.com>

Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

Reply via email to