From 9fb24259bfba7e742226d3e490e9d8e9996d39d1 Mon Sep 17 00:00:00 2001 From: Tobias Lindberg Date: Thu, 4 Aug 2022 11:18:22 +0200 Subject: [PATCH] fix(examples): adding iptables to ubuntu example --- examples/ubuntu/templates/user-data.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/ubuntu/templates/user-data.sh b/examples/ubuntu/templates/user-data.sh index f1c79710f0..d2620b78ed 100644 --- a/examples/ubuntu/templates/user-data.sh +++ b/examples/ubuntu/templates/user-data.sh @@ -7,13 +7,14 @@ ${pre_install} apt-get update DEBIAN_FRONTEND=noninteractive apt-get install -y \ awscli \ - jq \ + build-essential \ curl \ - wget \ git \ + iptables \ + jq \ uidmap \ - build-essential \ - unzip + unzip \ + wget user_name=ubuntu user_id=$(id -ru $user_name)