2014-11-14 22:14:08 +00:00
|
|
|
# Copyright 2012, Dag Wieers <dag@wieers.com>
|
|
|
|
#
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
2015-04-13 20:28:01 +00:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2014-11-14 22:14:08 +00:00
|
|
|
|
|
|
|
from ansible.plugins.action import ActionBase
|
|
|
|
from ansible.utils.boolean import boolean
|
2015-11-23 21:04:55 +00:00
|
|
|
from ansible.utils.unicode import to_unicode
|
2015-10-22 23:07:26 +00:00
|
|
|
|
2014-11-14 22:14:08 +00:00
|
|
|
class ActionModule(ActionBase):
|
|
|
|
''' Print statements during execution '''
|
|
|
|
|
|
|
|
TRANSFERS_FILES = False
|
|
|
|
|
2015-10-22 23:07:26 +00:00
|
|
|
def run(self, tmp=None, task_vars=None):
|
|
|
|
if task_vars is None:
|
|
|
|
task_vars = dict()
|
|
|
|
|
|
|
|
result = super(ActionModule, self).run(tmp, task_vars)
|
2014-11-14 22:14:08 +00:00
|
|
|
|
|
|
|
if 'msg' in self._task.args:
|
|
|
|
if 'fail' in self._task.args and boolean(self._task.args['fail']):
|
2015-10-22 23:07:26 +00:00
|
|
|
result['failed'] = True
|
|
|
|
result['msg'] = self._task.args['msg']
|
2014-11-14 22:14:08 +00:00
|
|
|
else:
|
2015-10-22 23:07:26 +00:00
|
|
|
result['msg'] = self._task.args['msg']
|
2014-11-14 22:14:08 +00:00
|
|
|
# FIXME: move the LOOKUP_REGEX somewhere else
|
|
|
|
elif 'var' in self._task.args: # and not utils.LOOKUP_REGEX.search(self._task.args['var']):
|
2015-05-04 06:33:10 +00:00
|
|
|
results = self._templar.template(self._task.args['var'], convert_bare=True)
|
2015-11-23 15:58:24 +00:00
|
|
|
if type(self._task.args['var']) in (list, dict):
|
|
|
|
# If var is a list or dict, use the type as key to display
|
2015-11-23 21:04:55 +00:00
|
|
|
result[to_unicode(type(self._task.args['var']))] = results
|
2015-11-23 15:58:24 +00:00
|
|
|
else:
|
2015-12-07 08:25:37 +00:00
|
|
|
# If var name is same as result, try to template it
|
2015-11-23 15:58:24 +00:00
|
|
|
if results == self._task.args['var']:
|
2015-12-07 08:25:37 +00:00
|
|
|
try:
|
|
|
|
results = self._templar.template("{{" + results + "}}", convert_bare=True, fail_on_undefined=True)
|
|
|
|
except:
|
|
|
|
results = "VARIABLE IS NOT DEFINED!"
|
2015-11-23 15:58:24 +00:00
|
|
|
result[self._task.args['var']] = results
|
2014-11-14 22:14:08 +00:00
|
|
|
else:
|
2015-10-22 23:07:26 +00:00
|
|
|
result['msg'] = 'here we are'
|
2014-11-14 22:14:08 +00:00
|
|
|
|
|
|
|
# force flag to make debug output module always verbose
|
2015-07-27 18:01:02 +00:00
|
|
|
result['_ansible_verbose_always'] = True
|
2014-11-14 22:14:08 +00:00
|
|
|
|
|
|
|
return result
|