diff options
author | binary <me@rgoncalves.se> | 2021-03-01 15:46:23 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-03-01 15:46:23 +0100 |
commit | a29fa5af783977e298777d5a870fc4191466371a (patch) | |
tree | f8e9bf5ae86170b441dffde43caa7430efe72575 /playbooks | |
parent | 637d9584c27edd835c24f30eed4ab7d8b4189925 (diff) | |
download | infrastructure-a29fa5af783977e298777d5a870fc4191466371a.tar.gz |
Add env role and meta tasks for workstation playbook
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/workstation.yml | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/playbooks/workstation.yml b/playbooks/workstation.yml index 4911ade..b91c314 100644 --- a/playbooks/workstation.yml +++ b/playbooks/workstation.yml @@ -7,10 +7,26 @@ - hosts: localhost tasks: - debug: - msg: Run as root for full compatiblity + msg: RUN AS ROOT + roles: - - { role: sshdns, tags: role_sshdns } - - { role: _workstation/packages, tags: role_workstation_packages } - - { role: _workstation/weechat-matrix, tags: role_workstation_weechat } - - { role: _workstation/sysconf, tags: role_workstation_sysconf } - - { role: update, tags: role_update} + + - role: sshdns + tags: role_sshdns + + - role: _workstation/env + tags: role_workstation_env + + - role: _workstation/packages + tags: role_workstation_packages + + - role: _workstation/sysconf + tags: role_workstation_sysconf + + #- role: _workstation/weechat-matrix + #tags: role_workstation_weechat + #become: true + #become_method: su + + - role: update + tags: role_update |