diff options
author | Jonathan Bauer | 2021-05-19 10:31:33 +0200 |
---|---|---|
committer | Jonathan Bauer | 2021-05-19 10:31:33 +0200 |
commit | e3a94451fcffd69fdfcf1e86159cfcb28546cbb7 (patch) | |
tree | 7b2489cc68ed96bda56ca5b46cc0da3909ed4168 | |
parent | [tools-extended] extended tool list for Freiburg (diff) | |
download | ansible-bwlp-e3a94451fcffd69fdfcf1e86159cfcb28546cbb7.tar.gz ansible-bwlp-e3a94451fcffd69fdfcf1e86159cfcb28546cbb7.tar.xz ansible-bwlp-e3a94451fcffd69fdfcf1e86159cfcb28546cbb7.zip |
setup-bwlp.yml: include all new roles
-rw-r--r-- | setup-bwlp.yml | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/setup-bwlp.yml b/setup-bwlp.yml index d5cd680..cd07c02 100644 --- a/setup-bwlp.yml +++ b/setup-bwlp.yml @@ -1,6 +1,28 @@ --- - hosts: "all" gather_facts: yes + pre_tasks: + - name: Update packages already installed + apt: + update_cache: yes + upgrade: dist + tags: always roles: - - { role: "mltk-bwlp" } - - { role: "mltk-nvidia" } + - { role: desktop-common, tags: core } + - { role: desktop-xfce4, tags: core } + - { role: docker-ce, tags: core } + - { role: docker-nvidia, tags: core } + - { role: enable-sysrq, tags: core } + - { role: journald, tags: core } + - { role: libvirt, tags: core } + - { role: singularity, tags: core } + - { role: tools-base, tags: core } + - { role: desktop-kde-plasma, tags: extended } + - { role: desktop-i3, tags: extended } + - { role: desktop-ubuntu, tags: extended } + - { role: tools-extended, tags: extended } + - { role: mltk-bwlp, tags: core } + - { role: mltk-vmware, tags: core } + - { role: mltk-nvidia, tags: core } + - { role: cleanup-apt, tags: core } + - { role: cleanup-systemd, tags: core }
\ No newline at end of file |