From b807ff0725d873a49d87e1a1834de5d28fd080e7 Mon Sep 17 00:00:00 2001 From: Ramesh Vijayaraghavan Date: Wed, 19 Jan 2022 19:45:13 +0530 Subject: [PATCH] Updated install.sh to include iptables iptables dependency is required for debian bullseye support Signed-off-by: Ramesh Vijayaraghavan --- hack/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hack/install.sh b/hack/install.sh index a8616d1..6613b38 100755 --- a/hack/install.sh +++ b/hack/install.sh @@ -46,13 +46,13 @@ has_pacman() { install_required_packages() { if $(has_apt_get); then $SUDO apt-get update -y - $SUDO apt-get install -y curl runc bridge-utils + $SUDO apt-get install -y curl runc bridge-utils iptables elif $(has_yum); then $SUDO yum check-update -y - $SUDO yum install -y curl runc + $SUDO yum install -y curl runc iptables elif $(has_pacman); then $SUDO pacman -Syy - $SUDO pacman -Sy curl runc bridge-utils + $SUDO pacman -Sy curl runc bridge-utils iptables else fatal "Could not find apt-get, yum, or pacman. Cannot install dependencies on this OS." exit 1