summaryrefslogtreecommitdiff
path: root/network/nxos/nxos_pim_interface.py
diff options
context:
space:
mode:
Diffstat (limited to 'network/nxos/nxos_pim_interface.py')
-rw-r--r--network/nxos/nxos_pim_interface.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/network/nxos/nxos_pim_interface.py b/network/nxos/nxos_pim_interface.py
index 9556b03a..6a627565 100644
--- a/network/nxos/nxos_pim_interface.py
+++ b/network/nxos/nxos_pim_interface.py
@@ -110,9 +110,9 @@ EXAMPLES = '''
- nxos_pim_interface:
interface: eth1/33
state: absent
- host: {{ inventory_hostname }}
- username: {{ un }}
- password: {{ pwd }}
+ host: "{{ inventory_hostname }}"
+ username: "{{ un }}"
+ password: "{{ pwd }}"
# ensure the interface has pim-sm enabled with the appropriate priority and hello interval
- nxos_pim_interface:
@@ -120,9 +120,9 @@ EXAMPLES = '''
dr_prio: 10
hello_interval: 40
state: present
- host: {{ inventory_hostname }}
- username: {{ un }}
- password: {{ pwd }}
+ host: "{{ inventory_hostname }}"
+ username: "{{ un }}"
+ password: "{{ pwd }}"
# ensure join-prune policies exist
- nxos_pim_interface:
@@ -131,17 +131,17 @@ EXAMPLES = '''
jp_policy_out: JPOUT
jp_type_in: routemap
jp_type_out: routemap
- host: {{ inventory_hostname }}
- username: {{ un }}
- password: {{ pwd }}
+ host: "{{ inventory_hostname }}"
+ username: "{{ un }}"
+ password: "{{ pwd }}"
# ensure defaults are in place
- nxos_pim_interface:
interface: eth1/33
state: default
- host: {{ inventory_hostname }}
- username: {{ un }}
- password: {{ pwd }}
+ host: "{{ inventory_hostname }}"
+ username: "{{ un }}"
+ password: "{{ pwd }}"
'''
RETURN = '''