diff --git a/install-worker.sh b/install-worker.sh index 8f58c4c26..25acb7330 100644 --- a/install-worker.sh +++ b/install-worker.sh @@ -64,6 +64,9 @@ sudo yum install -y \ unzip \ wget +# Remove the ec2-net-utils package, if it's installed. This package interferes with the route setup on the instance. +if yum list installed | grep ec2-net-utils; then sudo yum remove ec2-net-utils -y -q; fi + ################################################################################ ### Time ####################################################################### ################################################################################