You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
340 B
Python
12 lines
340 B
Python
7 years ago
|
# I am ansible.module_utils.external1 for any module that does not have an
|
||
|
# adjacent module_utils directory overriding the name, since I appear in the
|
||
|
# 'module_utils' path in ansible.cfg.
|
||
|
|
||
|
from ansible.module_utils import external2
|
||
|
|
||
|
def path():
|
||
|
return "ansible/lib/module_utils/external1.py"
|
||
|
|
||
|
def path2():
|
||
|
return external2.path()
|