* adding OS9 ansible collections * adding OS9 collections Co-authored-by: Patil <Komal_uttamrao_Patil@Dell.com>
17 lines
No EOL
587 B
YAML
17 lines
No EOL
587 B
YAML
---
|
|
# tasks file for os9
|
|
|
|
- name: "Generating ECMP configuration for os9"
|
|
template:
|
|
src: os9_ecmp.j2
|
|
dest: "{{ build_dir }}/ecmp9_{{ hostname }}.conf.part"
|
|
when: (ansible_network_os is defined and ansible_network_os == "dellemc.os9.os9") and ((os9_cfg_generate | default('False')) | bool)
|
|
# notify: save config os9
|
|
register: generate_output
|
|
|
|
- name: "Provisioning ECMP configuration for os9"
|
|
os9_config:
|
|
src: os9_ecmp.j2
|
|
when: (ansible_network_os is defined and ansible_network_os == "dellemc.os9.os9")
|
|
# notify: save config os9
|
|
register: output |