BUGFIX: misnamed function name breaks check mode

This commit is contained in:
Javier Palacios 2015-11-02 16:43:46 +00:00 committed by Matt Clay
parent 86bea2d6ab
commit 185761bfcb

View file

@ -165,9 +165,9 @@ def main():
try:
if module.check_mode:
if state == "absent":
changed = not db_exists(cursor, ext)
changed = not ext_exists(cursor, ext)
elif state == "present":
changed = db_exists(cursor, ext)
changed = ext_exists(cursor, ext)
module.exit_json(changed=changed,ext=ext)
if state == "absent":