blob: 6363a71881d08e5e6e44fe2a76aa54166d692770 (
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
|
# workstation ~~ playbooks/workstation.yml
# wokrstation initialization
---
- hosts: localhost
tasks:
- debug:
msg: RUN AS ROOT
roles:
- role: sshdns
tags: sshdns
- role: _workstation/env
tags: env, always
- role: _workstation/packages
tags: packages
- role: _workstation/sysconf
tags: sysconf
#- role: _workstation/weechat-matrix
#tags: role_workstation_weechat
#become: true
#become_method: su
- role: update
tags: update
|