now executes fact search when needed
This commit is contained in:
parent
8b896c9754
commit
f8905013cd
1 changed files with 2 additions and 5 deletions
|
@ -22,7 +22,7 @@ from ansible.plugins.action import ActionBase
|
||||||
|
|
||||||
class ActionModule(ActionBase):
|
class ActionModule(ActionBase):
|
||||||
|
|
||||||
TRANSFERS_FILES = True
|
TRANSFERS_FILES = False
|
||||||
|
|
||||||
def run(self, tmp=None, task_vars=dict()):
|
def run(self, tmp=None, task_vars=dict()):
|
||||||
''' handler for package operations '''
|
''' handler for package operations '''
|
||||||
|
@ -38,10 +38,7 @@ class ActionModule(ActionBase):
|
||||||
pass # could not get it from template!
|
pass # could not get it from template!
|
||||||
|
|
||||||
if module == 'auto':
|
if module == 'auto':
|
||||||
#FIXME: autodetect the package manager run facts module remotely to get ansible_pkg_mgr
|
module = self._execute_module(module_name=setup, module_args={filter: 'ansible_pkg_mgr'}, task_vars=task_vars)
|
||||||
#module = self._execute_module(module_name=setup, module_args={filter: 'ansible_pkg_mgr'}, task_vars=task_vars)
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
if module != 'auto':
|
if module != 'auto':
|
||||||
# run the 'package' module
|
# run the 'package' module
|
||||||
|
|
Loading…
Reference in a new issue