Skip to content

Provisioning new hosts

Aaron D Borden edited this page May 20, 2019 · 9 revisions

Before we can run ansible, we need to install python on the hosts. TODO: include python in the AMI so this step isn't necessary.

$ for host in ...; do ssh $host DEBIAN_FRONTEND=noninteractive apt-get install -y python; done
Clone this wiki locally