Commit 19fea2b2 authored by Dmitriy Safronov's avatar Dmitriy Safronov
Browse files

fix

parent dee14ea8
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -4,10 +4,8 @@
  hosts: ipacluster
  become: yes
  tasks:
    - name: Bootstrap a RedHat host without python3 installed
      raw: yum install -y python3 || true
    - name: Bootstrap a Debian host without python3 installed
      raw: apt install -y python3 || true
    - name: Bootstrap a host without python3 installed
      raw: ( test -n "$(which yum)" && yum install -y python3 ) ; ( test -n "$(which apt)" && apt install -y python3 ) ; ( test -n "$(which apk)" && apt add -y python3 )

- name: hostname
  hosts: hostname:&ipacluster