main.yml 370 B

1234567891011121314
  1. ---
  2. # INPUT r_etcd_upgrade_action
  3. - name: Fail if invalid etcd_upgrade_action provided
  4. fail:
  5. msg: "etcd_upgrade role can only be called with 'upgrade'"
  6. when:
  7. - r_etcd_upgrade_action not in ['upgrade']
  8. - name: Detecting Atomic Host Operating System
  9. stat:
  10. path: /run/ostree-booted
  11. register: l_ostree_booted
  12. - include: "{{ r_etcd_upgrade_action }}.yml"