标签: ansible
是否可以在角色中使用条件来检查正在使用的remote_user?像这样:
- block .... .... when: <The remote_user being used to connect is 'bob'>
答案 0 :(得分:0)
好的。您应该能够编写正常的Ansible条件:
- when: ansible_user == 'bob' block: ...
这假定ansible_user包含您关心的值。
ansible_user