<div dir="ltr"><div><div><div><div>Clean install of CentOS 7.1 (as of yesterday) and following along with <a href="http://docs.openstack.org/developer/tripleo-docs/" target="_blank">http://docs.openstack.org/developer/tripleo-docs/</a> for Liberty.<br><br></div>When I go to run instack-virt-setup, I'm prompted to configure EPEL:<br><br>+ tripleo install-dependencies<br>EPEL repository is required to install python-pip for CentOS.<br>See <a href="http://fedoraproject.org/wiki/EPEL" target="_blank">http://fedoraproject.org/wiki/EPEL</a><br><br></div>When I look at /usr/libexec/openstack-tripleo/install-dependencies, I find it does call for EPEL:<br><br>if [ "$TRIPLEO_OS_FAMILY" = "redhat" ]; then<br>    # For CentOS, python-pip and jq are in EPEL<br>    if [ "$TRIPLEO_OS_DISTRO" = "centos" ] && [ ! -f /etc/yum.repos.d/epel.repo ]; then<br>        echo EPEL repository is required to install python-pip for CentOS.<br>        echo See <a href="http://fedoraproject.org/wiki/EPEL" target="_blank">http://fedoraproject.org/wiki/EPEL</a><br>        exit 1<br>    fi<br>    sudo -E yum install -y python-lxml libvirt-python libvirt qemu-img qemu-kvm git python-pip openssl-devel python-devel gcc audit python-virtualenv openvswitch python-yaml net-tools redhat-lsb-core libxslt-devel jq openssh-server libffi-devel which glusterfs-api python-netaddr<br><br>    sudo service libvirtd restart<br>    sudo service openvswitch restart<br>    sudo chkconfig openvswitch on<br>fi<br><br></div>Indeed after removing the if statement for EPEL, instack-virt-setup appears to proceed without issue and provisions the instack VM, but that VM won't allow me to login as root. Any pointers would be great.<br></div></div>