1
0
Fork 0
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:
Fabio Alessandro Locati 2016-12-01 14:00:17 +00:00 committed by Matt Clay
parent 8a6df38cc5
commit fb50f129ea
2 changed files with 17 additions and 3 deletions

View file

@ -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
''' '''
# ================================================== # ==================================================

View file

@ -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
''' '''
# ================================================== # ==================================================