blob: 261170eda0bd3d2003e7e9fd2bb984399ba046c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# _workstation/env ~~ roles/_workstation/env/tasks/main.yml
# useful env. variables for workstation
---
- name: retrieve BECOME method
stat: path=/usr/bin/doas
register: _workstation_env_become
- name: retrieve existing users
shell: cat /etc/passwd | cut -d ":" -f 1
register: result
- name: check if target user exists
fail:
msg: _ws_user is not a valid user
when: _ws_user not in result.stdout_lines
- name: retrieve host facts
set_fact:
#ansible_become_method: "{{ 'doas' if _workstation_env_become.stat.exists else 'sudo' }}"
ansible_become_method: "su"
ansible_become_user: "{{ _ws_user }}"
|