Don't parse/interpret options if state is 'absent'. (#45700)
This commit is contained in:
parent
d2569a3f7d
commit
0961d914d7
1 changed files with 5 additions and 0 deletions
|
@ -753,6 +753,11 @@ class TaskParameters(DockerBaseClass):
|
|||
for key, value in client.module.params.items():
|
||||
setattr(self, key, value)
|
||||
|
||||
# If state is 'absent', parameters do not have to be parsed or interpreted.
|
||||
# Only the container's name is needed.
|
||||
if self.state == 'absent':
|
||||
return
|
||||
|
||||
for param_name in REQUIRES_CONVERSION_TO_BYTES:
|
||||
if client.module.params.get(param_name):
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue