parent
a61bdbadd5
commit
acd8853242
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- vdo - fix options error (https://github.com/ansible-collections/community.general/pull/4163).
|
|
@ -386,7 +386,6 @@ def deactivate_vdo(module, vdoname, vdocmd):
|
|||
|
||||
|
||||
def add_vdooptions(params):
|
||||
vdocmdoptions = ""
|
||||
options = []
|
||||
|
||||
if params.get('logicalsize') is not None:
|
||||
|
@ -437,7 +436,7 @@ def add_vdooptions(params):
|
|||
if params.get('physicalthreads') is not None:
|
||||
options.append("--vdoPhysicalThreads=" + params['physicalthreads'])
|
||||
|
||||
return vdocmdoptions
|
||||
return options
|
||||
|
||||
|
||||
def run_module():
|
||||
|
|
Loading…
Reference in New Issue