mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Fix typos in purefa_pgsnap module (#53643)
This commit is contained in:
@@ -225,10 +225,10 @@ def main():
|
||||
array = get_system(module)
|
||||
pgroup = get_pgroup(module, array)
|
||||
if pgroup is None:
|
||||
module.fail_json(msg="Protection Group {0} does not exist".format(module.params('pgroup')))
|
||||
module.fail_json(msg="Protection Group {0} does not exist".format(module.params['name']))
|
||||
pgsnap = get_pgsnapshot(module, array)
|
||||
if pgsnap is None:
|
||||
module.fail_json(msg="Selected volume {0} does not exist in the Protection Group".format(module.params('name')))
|
||||
module.fail_json(msg="Selected volume {0} does not exist in the Protection Group".format(module.params['name']))
|
||||
if ":" in module.params['name']:
|
||||
rvolume = get_rpgsnapshot(module, array)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user