From 68f1705d18804301606b0bc034cd0328ffe7febf Mon Sep 17 00:00:00 2001 From: Senthil Kumar Ganesan Date: Wed, 14 Sep 2016 12:55:45 -0700 Subject: [PATCH] Add action plugin for dnos6_config module (#17553) --- CHANGELOG.md | 1 + lib/ansible/plugins/action/dnos6_config.py | 28 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 lib/ansible/plugins/action/dnos6_config.py diff --git a/CHANGELOG.md b/CHANGELOG.md index b92464a9b5..67f88c107e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -69,6 +69,7 @@ Ansible Changes By Release - dnos6 * dnos6_command * dnos6_template + * dnos6_config - dnos9 * dnos9_command * dnos9_config diff --git a/lib/ansible/plugins/action/dnos6_config.py b/lib/ansible/plugins/action/dnos6_config.py new file mode 100644 index 0000000000..ffcb0f057f --- /dev/null +++ b/lib/ansible/plugins/action/dnos6_config.py @@ -0,0 +1,28 @@ +# +# 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_config import ActionModule as NetActionModule + +class ActionModule(NetActionModule, ActionBase): + pass + +