mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-13 20:31:24 +00:00
Allow modules in a "./library" directory to be referenced by their shortforms "modulename:" instead of just "action: modulename"
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user