diff --git a/net_infrastructure/openvswitch_bridge b/net_infrastructure/openvswitch_bridge index 2c87aacd396..7d9824c54bb 100644 --- a/net_infrastructure/openvswitch_bridge +++ b/net_infrastructure/openvswitch_bridge @@ -92,19 +92,19 @@ class OVSBridge(object): def run(self): '''Make the necessary changes''' - result = {'changed': False} + changed = False try: if self.state == 'absent': if self.exists(): self.delete() - result['changed'] = True + changed = True elif self.state == 'present': if not self.exists(): self.add() - result['changed'] = True + changed = True except Exception, e: self.module.fail_json(msg=str(e)) - self.module.exit_json(**result) + self.module.exit_json(changed=changed) def main(): diff --git a/net_infrastructure/openvswitch_port b/net_infrastructure/openvswitch_port index 3bde7f9a5ce..bfa7a9caa45 100644 --- a/net_infrastructure/openvswitch_port +++ b/net_infrastructure/openvswitch_port @@ -95,19 +95,19 @@ class OVSPort(object): def run(self): '''Make the necessary changes''' - result = {'changed': False} + changed = False try: if self.state == 'absent': if self.exists(): self.delete() - result['changed'] = True + changed = True elif self.state == 'present': if not self.exists(): self.add() - result['changed'] = True + changed = True except Exception, e: self.module.fail_json(msg=str(e)) - self.module.exit_json(**result) + self.module.exit_json(changed=changed) def main():