Loading run.yml +1 −1 Original line number Diff line number Diff line Loading @@ -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 Loading Loading
run.yml +1 −1 Original line number Diff line number Diff line Loading @@ -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 Loading