* adding OS9 ansible collections * adding OS9 collections Co-authored-by: Patil <Komal_uttamrao_Patil@Dell.com>
16 lines
No EOL
600 B
YAML
16 lines
No EOL
600 B
YAML
---
|
|
# tasks file for os9
|
|
- name: "Generating logging configuration for os9"
|
|
template:
|
|
src: os9_logging.j2
|
|
dest: "{{ build_dir }}/logging9_{{ 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 logging configuration for os9"
|
|
os9_config:
|
|
src: os9_logging.j2
|
|
when: (ansible_network_os is defined and ansible_network_os == "dellemc.os9.os9")
|
|
# notify: save config os9
|
|
register: output |