Commit 8edcaf28 authored by Дмитрий Сафронов's avatar Дмитрий Сафронов
Browse files

Fix

parent 4fadc0d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
  become: yes
  tasks:
    - 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 )
      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: hostname
  hosts: hostname:&ipacluster