modules: fix examples to use FQCN (#644)

* modules: fix examples to use FQCN

* fix

* fix

* fix
This commit is contained in:
Andrew Klychkov
2020-07-13 22:50:31 +03:00
committed by GitHub
parent 8b92e0454d
commit 41cfdda6a3
533 changed files with 2130 additions and 2130 deletions

View File

@@ -81,7 +81,7 @@ author: "Rajeev Arakkal (@rajeevarakkal)"
EXAMPLES = """
---
- name: Update firmware from repository on a Network Share
idrac_firmware:
community.general.idrac_firmware:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"

View File

@@ -106,7 +106,7 @@ author: "Jagadeesh N V(@jagadeeshnv)"
EXAMPLES = r'''
---
- name: Import Server Configuration Profile from a network share
idrac_server_config_profile:
community.general.idrac_server_config_profile:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
@@ -119,7 +119,7 @@ EXAMPLES = r'''
job_wait: True
- name: Import Server Configuration Profile from a local path
idrac_server_config_profile:
community.general.idrac_server_config_profile:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
@@ -132,7 +132,7 @@ EXAMPLES = r'''
job_wait: True
- name: Export Server Configuration Profile to a network share
idrac_server_config_profile:
community.general.idrac_server_config_profile:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
@@ -142,7 +142,7 @@ EXAMPLES = r'''
job_wait: False
- name: Export Server Configuration Profile to a local path
idrac_server_config_profile:
community.general.idrac_server_config_profile:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"

View File

@@ -85,13 +85,13 @@ author: "Sajna Shetty(@Sajna-Shetty)"
EXAMPLES = """
---
- name: Retrieve basic inventory of all devices.
ome_device_info:
community.general.ome_device_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
- name: Retrieve basic inventory for devices identified by IDs 33333 or 11111 using filtering.
ome_device_info:
community.general.ome_device_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
@@ -100,7 +100,7 @@ EXAMPLES = """
filter: "Id eq 33333 or Id eq 11111"
- name: Retrieve inventory details of specified devices identified by IDs 11111 and 22222.
ome_device_info:
community.general.ome_device_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
@@ -111,7 +111,7 @@ EXAMPLES = """
- 22222
- name: Retrieve inventory details of specified devices identified by service tags MXL1234 and MXL4567.
ome_device_info:
community.general.ome_device_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
@@ -122,7 +122,7 @@ EXAMPLES = """
- MXL4567
- name: Retrieve details of specified inventory type of specified devices identified by ID and service tags.
ome_device_info:
community.general.ome_device_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
@@ -136,7 +136,7 @@ EXAMPLES = """
inventory_type: "serverDeviceCards"
- name: Retrieve subsystem health of specified devices identified by service tags.
ome_device_info:
community.general.ome_device_info:
hostname: "192.168.0.1"
username: "username"
password: "password"