|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] [tools/hotplug] Use ip on systems where brctl is not available
Steven Haigh writes ("[PATCH] [tools/hotplug] Use ip on systems where brctl is
not available"):
> Newer distros like CentOS 8 do not have brctl available. As such, we
> can't use it to configure networking anymore.
>
> This patch will fall back to 'ip' or 'bridge' commands if brctl is not
> available in the working PATH.
This looks good to me at least in the brctl case. I have two minor
comments.
For the avoidance of doubt, I guess you have tested this in the
`ip'/`bridge' case ? How thoroughly ? :-)
> -if [ -z "$bridge" ]
> -then
> - bridge=$(brctl show | awk 'NR==2{print$1}')
> -
> +if [ -z "$bridge" ]; then
The presumably-unintentional style change makes the review slightly
harder...
> - bridge=$(brctl show | cut -d "
> + if which brctl >&/dev/null; then
Maybe introduce
have_brctl () { ... }
so we can say
if have_brctl; then
?
Regards,
Ian.
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |