service.yml 538 B

123456789101112131415161718
  1. ---
  2. - name: Populate g_service_nfs host group if needed
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - fail: msg="new_cluster_state is required to be injected in this playbook"
  7. when: new_cluster_state is not defined
  8. - name: Evaluate g_service_nfs
  9. add_host: name={{ item }} groups=g_service_nfs
  10. with_items: "{{ oo_host_group_exp | default([]) }}"
  11. - name: Change state on nfs instance(s)
  12. hosts: g_service_nfs
  13. connection: ssh
  14. gather_facts: no
  15. tasks:
  16. - service: name=nfs-server state="{{ new_cluster_state }}"