diff --git a/playbooks/bridge.yaml b/playbooks/bridge.yaml new file mode 100644 index 0000000000..ec37ac7713 --- /dev/null +++ b/playbooks/bridge.yaml @@ -0,0 +1,3 @@ +- hosts: bridge.openstack.org + roles: + - pip3 diff --git a/playbooks/roles/pip3/tasks/main.yaml b/playbooks/roles/pip3/tasks/main.yaml new file mode 100644 index 0000000000..524fc139a5 --- /dev/null +++ b/playbooks/roles/pip3/tasks/main.yaml @@ -0,0 +1,6 @@ +- name: Install pip and virtualenv + package: + name: "{{ item }}" + loop: + - python3-pip + - python3-virtualenv