Skip to content

Commit

Permalink
Change booleans 'yes'->'true' and 'no'->'false'
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleyghooper committed Jan 10, 2023
1 parent 56af77d commit c757fc3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions plugins/modules/orion_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
description:
- Enable automatic update of agent versions.
type: bool
default: 'no'
default: false
polling_engine_id:
description:
Expand Down Expand Up @@ -194,7 +194,7 @@
EXAMPLES = r"""
- name: Remove nodes
hosts: all
gather_facts: no
gather_facts: false
tasks:
- name: Remove a node from Orion
anophelesgreyhoe.solarwinds.orion_node:
Expand All @@ -209,7 +209,7 @@
- name: Mute nodes
hosts: all
gather_facts: no
gather_facts: false
tasks:
- anophelesgreyhoe.solarwinds.orion_node:
solarwinds_connection:
Expand Down
20 changes: 10 additions & 10 deletions plugins/modules/solarwinds_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
C(Orion.Nodes.Interfaces) is accessible via C(Interfaces).
- For each nested entity, individual columns can be specified below
via the I(columns) option, or alternatively all columns can be returned
if I(all_columns=yes) is provided.
if I(all_columns=true) is provided.
type: dict
include:
Expand Down Expand Up @@ -121,7 +121,7 @@
EXAMPLES = r"""
- name: Get details of all SolarWinds polling engines
hosts: localhost
gather_facts: no
gather_facts: false
tasks:
- name: Run a regular SolarWinds Information Service query
anophelesgreyhoe.solarwinds.solarwinds_info:
Expand All @@ -131,12 +131,12 @@
password: "{{ solarwinds_password }}"
base_table:
name: Orion.Engines
all_columns: yes
all_columns: true
delegate_to: localhost
- name: Find all nodes that are polled using SNMP v1 or v2
hosts: localhost
gather_facts: no
gather_facts: false
tasks:
- name: Run a regular SolarWinds Information Service query
anophelesgreyhoe.solarwinds.solarwinds_info:
Expand All @@ -146,7 +146,7 @@
password: "{{ solarwinds_password }}"
base_table:
name: Orion.Nodes
all_columns: yes
all_columns: true
include:
ObjectSubType: SNMP
SNMPVersion:
Expand All @@ -156,7 +156,7 @@
- name: Find all nodes in Australia with IP addresses starting with '10.100.0.'
hosts: localhost
gather_facts: no
gather_facts: false
tasks:
- name: Run a regular SolarWinds Information Service query
anophelesgreyhoe.solarwinds.solarwinds_info:
Expand All @@ -166,7 +166,7 @@
password: "{{ solarwinds_password }}"
base_table:
name: Orion.Nodes
all_columns: yes
all_columns: true
nested_entities:
Orion.NodesCustomPropeties:
columns:
Expand All @@ -178,7 +178,7 @@
- name: Find all nodes currently having severity of 100 or higher
hosts: localhost
gather_facts: no
gather_facts: false
tasks:
- name: Run a regular SolarWinds Information Service query
anophelesgreyhoe.solarwinds.solarwinds_info:
Expand All @@ -188,15 +188,15 @@
password: "{{ solarwinds_password }}"
base_table:
name: Orion.Nodes
all_columns: yes
all_columns: true
include:
Severity:
min: 100
delegate_to: localhost
- name: Find nodes in Australia with current status of 'Down'
hosts: localhost
gather_facts: no
gather_facts: false
tasks:
- name: Run a regular SolarWinds Information Service query
anophelesgreyhoe.solarwinds.solarwinds_info:
Expand Down

0 comments on commit c757fc3

Please sign in to comment.