mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added extra choice floppy for bootdev option in ipmi_boot module (#36174)
This commit is contained in:
parent
57f01c63e9
commit
52627f3fa0
1 changed files with 2 additions and 1 deletions
|
@ -45,6 +45,7 @@ options:
|
|||
required: true
|
||||
choices:
|
||||
- network -- Request network boot
|
||||
- floppy -- Boot from floppy
|
||||
- hd -- Boot from hard drive
|
||||
- safe -- Boot from hard drive, requesting 'safe mode'
|
||||
- optical -- boot from CD/DVD/BD drive
|
||||
|
@ -129,7 +130,7 @@ def main():
|
|||
user=dict(required=True, no_log=True),
|
||||
password=dict(required=True, no_log=True),
|
||||
state=dict(default='present', choices=['present', 'absent']),
|
||||
bootdev=dict(required=True, choices=['network', 'hd', 'safe', 'optical', 'setup', 'default']),
|
||||
bootdev=dict(required=True, choices=['network', 'hd', 'floppy', 'safe', 'optical', 'setup', 'default']),
|
||||
persistent=dict(default=False, type='bool'),
|
||||
uefiboot=dict(default=False, type='bool')
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue