mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
423 B
YAML
17 lines
423 B
YAML
6 years ago
|
---
|
||
|
- name: Make sure there are no existing SNMP configuration settings
|
||
|
win_regedit:
|
||
|
path: "{{ item }}"
|
||
|
state: absent
|
||
|
loop:
|
||
|
- "{{ permitted_managers_key }}"
|
||
|
- "{{ valid_communities_key }}"
|
||
|
|
||
|
- name: Create skeleton registry keys for SNMP
|
||
|
win_regedit:
|
||
|
path: "{{ item }}"
|
||
|
state: present
|
||
|
loop:
|
||
|
- "{{ permitted_managers_key }}"
|
||
|
- "{{ valid_communities_key }}"
|