[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [PATCH 1/2] Make xencommons a bit more idiomatic



Jeremy Fitzhardinge writes ("[Xen-devel] [PATCH 1/2] Make xencommons a bit more 
idiomatic"):
> Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@xxxxxxxxxx>
...
> -if test "x$1" = xstart && \
> -     test -d /proc/xen && \
> -   ! test -f /proc/xen/capabilities && \
> -   ! grep '^xenfs ' /proc/mounts >/dev/null;
> -then
> +if [ "x$1" = xstart -a -d /proc/xen -a \
> +    ! -f /proc/xen/capabilities ] && \
> +    ! grep -qw '^xenfs' /proc/mounts; then
>       mount -t xenfs xenfs /proc/xen

I'm afraid I'm reluctant to accept this purely stylistic change.  I
might if it seemed to me to be a clear improvement, but I don't think
that's the case.

If anything we should be moving towards the use of && rather than -a,
as that is harmless and will make the script depend less on /bin/bash.

Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.