Message ID | 20171020103840.32762-7-wei.liu2@citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/ts-xen-install b/ts-xen-install index ec907c5..d4c25c7 100755 --- a/ts-xen-install +++ b/ts-xen-install @@ -57,6 +57,9 @@ sub packages () { libsdl1.2debian libglib2.0-0 liblzma5 qemu-utils netcat-openbsd)); + if ($ho->{Suite} =~ m/stretch/) { + target_install_packages($ho, 'net-tools libnl-route-3-200'); + } if ($ho->{Suite} =~ m/jessie/) { target_install_packages($ho, 'libnl-route-3-200'); }
The "route" command is now in that package. libnl is needed when running xl. Signed-off-by: Wei Liu <wei.liu2@citrix.com> --- ts-xen-install | 3 +++ 1 file changed, 3 insertions(+)