Commit f8aad6ab authored by Dmitriy Safronov's avatar Dmitriy Safronov
Browse files

fix

parent 77ade465
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
---

- hosts: ipacluster
  become: yes
  tasks:
    - name: Bootstrap a host without python3 installed
      raw: ( test -n "$(which yum)" && yum install -y python3 || true ) ; ( test -n "$(which apt)" && apt install -y python3 || true ) ; ( test -n "$(which apk)" && apk add -y python3 || true )

- name: Set hostname
  hosts: hostname:&ipacluster
  become: yes