Repository URL to install this package:
|
Version:
6.0.0 ▾
|
---
# tasks file for os6
- name: "Generating AAA configuration for os6"
template:
src: os6_aaa.j2
dest: "{{ build_dir }}/aaa6_{{ hostname }}.conf.part"
when: (ansible_network_os is defined and ansible_network_os == "dellemc.os6.os6") and ((os6_cfg_generate | default('False')) | bool)
# notify: save config os6
register: generate_output
- name: "Provisioning AAA configuration for os6"
dellemc.os6.os6_config:
src: os6_aaa.j2
when: (ansible_network_os is defined and ansible_network_os == "dellemc.os6.os6")
# notify: save config os6
register: output