From 81f34cd01c2ab857574f23b4c7b3364b8b7ec8f3 Mon Sep 17 00:00:00 2001 From: Patrick Ogenstad Date: Fri, 27 Oct 2017 14:53:09 +0200 Subject: [PATCH] Remove asa_template action plugin (#32233) Since the asa_template module has been deprecated this action plugin is no longer needed. --- lib/ansible/plugins/action/asa_template.py | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 lib/ansible/plugins/action/asa_template.py diff --git a/lib/ansible/plugins/action/asa_template.py b/lib/ansible/plugins/action/asa_template.py deleted file mode 100644 index 94a1ab4dda6..00000000000 --- a/lib/ansible/plugins/action/asa_template.py +++ /dev/null @@ -1,27 +0,0 @@ -# -# Copyright 2015 Peter Sprygada -# -# This file is part of Ansible -# -# Ansible is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Ansible is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with Ansible. If not, see . -# -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type - -from ansible.plugins.action import ActionBase -from ansible.plugins.action.net_template import ActionModule as NetActionModule - - -class ActionModule(NetActionModule, ActionBase): - pass