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.
29 lines
593 B
Python
29 lines
593 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Print shell environment exports adding ARA plugins to the list of plugins
|
|
from ansible.cfg in the CWD.
|
|
"""
|
|
|
|
import os
|
|
|
|
import ara.setup
|
|
import ansible.constants as C
|
|
|
|
os.chdir(os.path.dirname(__file__))
|
|
|
|
print('export ANSIBLE_ACTION_PLUGINS=%s:%s' % (
|
|
':'.join(C.DEFAULT_ACTION_PLUGIN_PATH),
|
|
ara.setup.action_plugins,
|
|
))
|
|
|
|
print('export ANSIBLE_CALLBACK_PLUGINS=%s:%s' % (
|
|
':'.join(C.DEFAULT_CALLBACK_PLUGIN_PATH),
|
|
ara.setup.callback_plugins,
|
|
))
|
|
|
|
print('export ANSIBLE_LIBRARY=%s:%s' % (
|
|
':'.join(C.DEFAULT_MODULE_PATH),
|
|
ara.setup.library,
|
|
))
|