From f3b96c873dda0eb465e926ee8d63143c63b36bdd Mon Sep 17 00:00:00 2001 From: Ilya Leoshkevich Date: Thu, 19 May 2022 13:09:36 +0200 Subject: [PATCH] vmtest: add iptables iptables is required by the new selftests for raw syncookie helpers. Signed-off-by: Ilya Leoshkevich --- travis-ci/rootfs/mkrootfs_debian.sh | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/travis-ci/rootfs/mkrootfs_debian.sh b/travis-ci/rootfs/mkrootfs_debian.sh index 7d36656..bde1f65 100755 --- a/travis-ci/rootfs/mkrootfs_debian.sh +++ b/travis-ci/rootfs/mkrootfs_debian.sh @@ -20,7 +20,19 @@ root=$(mktemp -d -p "$PWD") trap 'rm -r "$root"' EXIT # Install packages. -packages=binutils,busybox,elfutils,ethtool,iproute2,libcap2,libelf1,strace,zlib1g +packages=( + binutils + busybox + elfutils + ethtool + iproute2 + iptables + libcap2 + libelf1 + strace + zlib1g +) +packages=$(IFS=, && echo "${packages[*]}") debootstrap --include="$packages" --variant=minbase "$@" bookworm "$root" # Remove the init scripts (tests use their own). Also remove various