adding ostype win10 support (#62987)
This commit is contained in:
parent
b02467961a
commit
0b97180c74
1 changed files with 2 additions and 2 deletions
|
@ -223,7 +223,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies guest operating system. This is used to enable special optimization/features for specific operating systems.
|
- Specifies guest operating system. This is used to enable special optimization/features for specific operating systems.
|
||||||
- The l26 is Linux 2.6/3.X Kernel.
|
- The l26 is Linux 2.6/3.X Kernel.
|
||||||
choices: ['other', 'wxp', 'w2k', 'w2k3', 'w2k8', 'wvista', 'win7', 'win8', 'l24', 'l26', 'solaris']
|
choices: ['other', 'wxp', 'w2k', 'w2k3', 'w2k8', 'wvista', 'win7', 'win8', 'win10', 'l24', 'l26', 'solaris']
|
||||||
default: l26
|
default: l26
|
||||||
parallel:
|
parallel:
|
||||||
description:
|
description:
|
||||||
|
@ -828,7 +828,7 @@ def main():
|
||||||
numa=dict(type='dict'),
|
numa=dict(type='dict'),
|
||||||
numa_enabled=dict(type='bool'),
|
numa_enabled=dict(type='bool'),
|
||||||
onboot=dict(type='bool', default='yes'),
|
onboot=dict(type='bool', default='yes'),
|
||||||
ostype=dict(default='l26', choices=['other', 'wxp', 'w2k', 'w2k3', 'w2k8', 'wvista', 'win7', 'win8', 'l24', 'l26', 'solaris']),
|
ostype=dict(default='l26', choices=['other', 'wxp', 'w2k', 'w2k3', 'w2k8', 'wvista', 'win7', 'win8', 'win10', 'l24', 'l26', 'solaris']),
|
||||||
parallel=dict(type='dict'),
|
parallel=dict(type='dict'),
|
||||||
pool=dict(type='str'),
|
pool=dict(type='str'),
|
||||||
protection=dict(type='bool'),
|
protection=dict(type='bool'),
|
||||||
|
|
Loading…
Reference in a new issue