mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-16 10:00:39 +00:00
17 lines
533 B
Python
17 lines
533 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# (c) 2017, Ansible by Red Hat, inc
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
|
||
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
from ansible.plugins.action.net_base import ActionModule as _ActionModule
|
||
|
|
||
|
|
||
|
class ActionModule(_ActionModule):
|
||
|
def run(self, tmp=None, task_vars=None):
|
||
|
result = super(ActionModule, self).run(tmp, task_vars)
|
||
|
del tmp # tmp no longer has any effect
|
||
|
return result
|