Allow modules in a "./library" directory to be referenced by their shortforms "modulename:" instead of just "action: modulename"
This commit is contained in:
parent
e90023281d
commit
7117ca5395
1 changed files with 6 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
|
||||
from ansible import errors
|
||||
from ansible import utils
|
||||
import os
|
||||
import ansible.utils.template as template
|
||||
|
||||
class Task(object):
|
||||
|
@ -53,6 +54,11 @@ class Task(object):
|
|||
else:
|
||||
self.meta = None
|
||||
|
||||
|
||||
library = os.path.join(play.basedir, 'library')
|
||||
if os.path.exists(library):
|
||||
utils.plugins.module_finder.add_directory(library)
|
||||
|
||||
for x in ds.keys():
|
||||
|
||||
# code to allow for saying "modulename: args" versus "action: modulename args"
|
||||
|
|
Loading…
Reference in a new issue