mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
d268471739
commit
3a78861cb5
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ def map_obj_to_commands(updates, module):
|
||||||
want, have = updates
|
want, have = updates
|
||||||
state = module.params['state']
|
state = module.params['state']
|
||||||
|
|
||||||
if state == 'absent' and have['text']:
|
if state == 'absent' and 'text' in have.keys() and have['text']:
|
||||||
commands.append('no banner %s' % module.params['banner'])
|
commands.append('no banner %s' % module.params['banner'])
|
||||||
|
|
||||||
elif state == 'present':
|
elif state == 'present':
|
||||||
|
|
Loading…
Reference in a new issue