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 @@ notes:
EXAMPLES = r'''
- name: Power down server
imc_rest:
community.general.imc_rest:
hostname: '{{ imc_hostname }}'
username: '{{ imc_username }}'
password: '{{ imc_password }}'
@@ -93,7 +93,7 @@ EXAMPLES = r'''
delegate_to: localhost
- name: Configure IMC using multiple XML fragments
imc_rest:
community.general.imc_rest:
hostname: '{{ imc_hostname }}'
username: '{{ imc_username }}'
password: '{{ imc_password }}'
@@ -118,7 +118,7 @@ EXAMPLES = r'''
delegate_to: localhost
- name: Enable PXE boot and power-cycle server
imc_rest:
community.general.imc_rest:
hostname: '{{ imc_hostname }}'
username: '{{ imc_username }}'
password: '{{ imc_password }}'
@@ -136,7 +136,7 @@ EXAMPLES = r'''
delegate_to: localhost
- name: Reconfigure IMC to boot from storage
imc_rest:
community.general.imc_rest:
hostname: '{{ imc_host }}'
username: '{{ imc_username }}'
password: '{{ imc_password }}'
@@ -148,7 +148,7 @@ EXAMPLES = r'''
delegate_to: localhost
- name: Add customer description to server
imc_rest:
community.general.imc_rest:
hostname: '{{ imc_host }}'
username: '{{ imc_username }}'
password: '{{ imc_password }}'
@@ -160,7 +160,7 @@ EXAMPLES = r'''
delegate_to: localhost
- name: Disable HTTP and increase session timeout to max value 10800 secs
imc_rest:
community.general.imc_rest:
hostname: '{{ imc_host }}'
username: '{{ imc_username }}'
password: '{{ imc_password }}'