60-agent-inst-prep.yml 429 B

123456789101112131415
  1. ---
  2. # Perform the preparation tasks for agent-based installation.
  3. # Basically the same as 50-coreos-inst-prep.yml plus a couple of steps.
  4. - import_playbook: 50-coreos-inst-prep.yml
  5. - name: Additional tasks for agent installation.
  6. hosts: workstation.lab.example.com
  7. become: yes
  8. gather_subset: min
  9. tasks:
  10. - name: Ensure nmstate is installed.
  11. ansible.builtin.yum:
  12. name: nmstate
  13. state: present
  14. ...