以使用哪个remote_user为条件?

时间:2019-11-22 16:47:24

标签: ansible

是否可以在角色中使用条件来检查正在使用的remote_user?像这样:

- block
  ....
  ....
when: <The remote_user being used to connect is 'bob'>

1 个答案:

答案 0 :(得分:0)

好的。您应该能够编写正常的Ansible条件:

- when: ansible_user == 'bob'
  block:
    ...

这假定ansible_user包含您关心的值。