From 6bb45a353cb9d1921be2cc9ddde7f4d1759f6280 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 26 Apr 2015 17:56:20 +0000 Subject: [PATCH] Drop started from first network call because ovs isn't installed then. Install ssh pub key, but it's still asking for a password --- playbooks/hosts/fed-cloud09.cloud.fedoraproject.org.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/playbooks/hosts/fed-cloud09.cloud.fedoraproject.org.yml b/playbooks/hosts/fed-cloud09.cloud.fedoraproject.org.yml index 69b38b4b72..a8270f880f 100644 --- a/playbooks/hosts/fed-cloud09.cloud.fedoraproject.org.yml +++ b/playbooks/hosts/fed-cloud09.cloud.fedoraproject.org.yml @@ -57,9 +57,13 @@ - rootpw - name: Set the hostname action: hostname name={{ controller_hostname }} + - name: Deploy root private SSH key copy: src={{ private }}/files/openstack/fed-cloud09-root.key dest=/root/.ssh/id_rsa mode=600 owner=root group=root + - name: Deploy root public SSH key + copy: src={{ files }}/fedora-cloud/fed09-ssh-key.pub dest=/root/.ssh/id_rsa.pub mode=600 owner=root group=root + - name: install core pkgs action: yum state=present pkg={{ item }} with_items: @@ -91,7 +95,7 @@ # http://docs.openstack.org/trunk/install-guide/install/yum/content/basics-networking.html - service: name=NetworkManager state=stopped enabled=no - - service: name=network state=started enabled=yes + - service: name=network enabled=yes - service: name=firewalld state=stopped enabled=no ignore_errors: yes - service: name=iptables state=started enabled=yes