我是ansible的新手,我正在寻找有关ansible playbook的帮助。
我的示例架构(文件夹位置)
Action1
- roles
- module1_action1
- tasks
- templates
- module2_action2
- tasks
- templates
- module3_action3
- tasks
- templates
- action1.yml
Action2
- roles
- module4_action4
- tasks
- templates
- action2.yml
这是我的问题:我如何使用action2.yml来执行Action1的module2_action2?
非常感谢你的帮助。
LAU
答案 0 :(得分:0)
在ansible.cfg
中设置roles_path以包含Action1/roles
和Action2/roles
。
这样您就可以从actions2 playbook中访问action1的角色。