mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Native YAML - remote_management (#3601)
This commit is contained in:
parent
8a6df38cc5
commit
fb50f129ea
2 changed files with 17 additions and 3 deletions
|
@ -110,9 +110,19 @@ uefimode:
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Ensure bootdevice is HD.
|
# Ensure bootdevice is HD.
|
||||||
- ipmi_boot: name="test.testdomain.com" user="admin" password="password" bootdev="hd"
|
- ipmi_boot:
|
||||||
|
name: test.testdomain.com
|
||||||
|
user: admin
|
||||||
|
password: password
|
||||||
|
bootdev: hd
|
||||||
|
|
||||||
# Ensure bootdevice is not Network
|
# Ensure bootdevice is not Network
|
||||||
- ipmi_boot: name="test.testdomain.com" user="admin" password="password" bootdev="network" state=absent
|
- ipmi_boot:
|
||||||
|
name: test.testdomain.com
|
||||||
|
user: admin
|
||||||
|
password: password
|
||||||
|
bootdev: network
|
||||||
|
state: absent
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# ==================================================
|
# ==================================================
|
||||||
|
|
|
@ -83,7 +83,11 @@ powerstate:
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Ensure machine is powered on.
|
# Ensure machine is powered on.
|
||||||
- ipmi_power: name="test.testdomain.com" user="admin" password="password" state="on"
|
- ipmi_power:
|
||||||
|
name: test.testdomain.com
|
||||||
|
user: admin
|
||||||
|
password: password
|
||||||
|
state: on
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# ==================================================
|
# ==================================================
|
||||||
|
|
Loading…
Reference in a new issue