Adding Netbox
This commit is contained in:
49
roles/ansible-network.cisco_ios/tasks/configure_user.yaml
Normal file
49
roles/ansible-network.cisco_ios/tasks/configure_user.yaml
Normal file
@@ -0,0 +1,49 @@
|
||||
---
|
||||
- name: "check if user(s) to configure is provided"
|
||||
fail:
|
||||
msg: "no user provided to configure"
|
||||
when: users is not defined
|
||||
delegate_to: localhost
|
||||
|
||||
- name: "check for required fact - name"
|
||||
fail:
|
||||
msg: "missing required fact: name"
|
||||
with_items: "{{ users }}"
|
||||
when: ( user.name is not defined )
|
||||
loop_control:
|
||||
loop_var: user
|
||||
delegate_to: localhost
|
||||
|
||||
- name: "fetch existing user account details"
|
||||
block:
|
||||
- name: "fetch user config with section"
|
||||
cli:
|
||||
command: show running-config | section user
|
||||
register: user_config
|
||||
rescue:
|
||||
- name: "fallback fetching full running-config"
|
||||
cli:
|
||||
command: show running-config
|
||||
register: user_config
|
||||
|
||||
- name: "filter out users through user_manager"
|
||||
ios_user_manager:
|
||||
new_users: "{{ users }}"
|
||||
user_config: "{{ user_config.stdout }}"
|
||||
register: filtered_users
|
||||
delegate_to: localhost
|
||||
|
||||
- name: "set users to be configured"
|
||||
set_fact:
|
||||
users: "{{ filtered_users.stdout }}"
|
||||
delegate_to: localhost
|
||||
|
||||
- name: "fetch template for configuring user(s)"
|
||||
set_fact:
|
||||
config_manager_text: "{{ lookup('config_template', 'configure_user.j2') }}"
|
||||
when: users
|
||||
delegate_to: localhost
|
||||
|
||||
- include_tasks: config_manager/load.yaml
|
||||
when: users
|
||||
delegate_to: localhost
|
||||
Reference in New Issue
Block a user