diff --git a/scripts/bootstrap-ansible.sh b/scripts/bootstrap-ansible.sh index a6cb6d9de5..c496c91fc3 100755 --- a/scripts/bootstrap-ansible.sh +++ b/scripts/bootstrap-ansible.sh @@ -49,15 +49,16 @@ determine_distro # Install the base packages case ${DISTRO_ID} in centos|rhel) - yum check-update && yum -y install git python2 curl autoconf gcc-c++ \ + yum check-update + yum -y install git python2 curl autoconf gcc-c++ \ python2-devel gcc libffi-devel openssl-devel python-requests \ python-pyasn1 pyOpenSSL python-ndg_httpsclient \ python-netaddr python-prettytable python-crypto PyYAML \ python-virtualenv ;; ubuntu) - apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get -y install \ + apt-get update + DEBIAN_FRONTEND=noninteractive apt-get -y install \ git python-all python-dev curl python2.7-dev build-essential \ libssl-dev libffi-dev python-requests python-openssl python-pyasn1 \ python-netaddr python-prettytable python-crypto python-yaml \