main.yml 276 B

1234567891011121314
  1. ---
  2. - name: Ensure bin_dir exists
  3. file:
  4. path: "{{ bin_dir }}"
  5. recurse: yes
  6. state: directory
  7. - include_tasks: download_bins.yml
  8. - include_tasks: netmaster.yml
  9. when: contiv_role == "netmaster"
  10. - include_tasks: netplugin.yml
  11. when: contiv_role == "netplugin"