fixed undefined msg and now actually return something meaningful fixes #1127
This commit is contained in:
parent
ea6fdeb585
commit
577566139f
1 changed files with 2 additions and 2 deletions
|
@ -102,11 +102,11 @@ def main():
|
||||||
|
|
||||||
msg_object = Pushover(module, module.params['user_key'], module.params['app_token'])
|
msg_object = Pushover(module, module.params['user_key'], module.params['app_token'])
|
||||||
try:
|
try:
|
||||||
msg_object.run(module.params['pri'], module.params['msg'])
|
response = msg_object.run(module.params['pri'], module.params['msg'])
|
||||||
except:
|
except:
|
||||||
module.fail_json(msg='Unable to send msg via pushover')
|
module.fail_json(msg='Unable to send msg via pushover')
|
||||||
|
|
||||||
module.exit_json(msg=msg, changed=False)
|
module.exit_json(msg='message sent successfully: %s' % response, changed=False)
|
||||||
|
|
||||||
# import module snippets
|
# import module snippets
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
|
Loading…
Reference in a new issue