diff --git a/playbooks/groups/osbs-cluster.yml b/playbooks/groups/osbs-cluster.yml index 3757922083..a821adc323 100644 --- a/playbooks/groups/osbs-cluster.yml +++ b/playbooks/groups/osbs-cluster.yml @@ -25,6 +25,7 @@ - include: "{{ tasks }}/yumrepos.yml" - include: "{{ tasks }}/2fa_client.yml" - include: "{{ tasks }}/motd.yml" + - include: "/srv/web/infra/ansible/playbooks/include/bootstrap-fedora.yml" handlers: - include: "{{ handlers }}/restart_services.yml" diff --git a/playbooks/include/bootstrap-fedora.yml b/playbooks/include/bootstrap-fedora.yml new file mode 100644 index 0000000000..d80f6646cb --- /dev/null +++ b/playbooks/include/bootstrap-fedora.yml @@ -0,0 +1,4 @@ +- name: install python and deps for ansible modules + raw: dnf install -y python2 python2-dnf libselinux-python libsemanage-python python2-firewall + +# vim:ft=ansible: