Browse Source

Fix delete state

Joel Diaz 9 years ago
parent
commit
92c1e7f9a6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      roles/lib_zabbix/library/zbx_action.py

+ 2 - 2
roles/lib_zabbix/library/zbx_action.py

@@ -1,8 +1,8 @@
 #!/usr/bin/env python
+# vim: expandtab:tabstop=4:shiftwidth=4
 '''
  Ansible module for zabbix actions
 '''
-# vim: expandtab:tabstop=4:shiftwidth=4
 #
 #   Zabbix action ansible module
 #
@@ -457,7 +457,7 @@ def main():
         if not exists(content):
             module.exit_json(changed=False, state="absent")
 
-        content = zapi.get_content(zbx_class_name, 'delete', [content['result'][0]['itemid']])
+        content = zapi.get_content(zbx_class_name, 'delete', [content['result'][0]['actionid']])
         module.exit_json(changed=True, results=content['result'], state="absent")
 
     # Create and Update