blob: e3f14aa4c80f939f9ec920f58b391d8f52ab3afc (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# workstation ~~ roles/workstation/tasks/main.yml
# init workstation
---
- name: include distribution specific task
include_tasks: "_{{ ansible_distribution | lower }}.yml"
ignore_errors: true
- name: generate doas configuration
lineinfile:
path: /etc/doas.conf
regexp: "^permit persist keepenv {{ _ws_user }} as root"
line: "permit persist keepenv {{ _ws_user }} as root"
owner: root
mode: 0644
create: true
- name: allow reboot/shutdown/hibernate with doas
lineinfile:
path: /etc/doas.conf
regexp: "^permit nopass {{ _ws_user }} as root cmd {{ item }}"
line: "permit nopass {{ _ws_user }} as root cmd {{ item }}"
loop:
- zzz
- ZZZ
- reboot
- shutdown
- name: start and enable pcscd service
service:
name: pcscd
state: started
enabled: true
- name: check sudo binary path
shell: which sudo
register: result
failed_when: result.rc | string not in "02"
- name: uninstall sudo binary
package:
name: sudo
state: absent
when: result.rc == 0
register: sudo
ignore_errors: true
|