]> git.phdru.name Git - ansible.git/commitdiff
Feat(init-local-phd): Install X11
authorOleg Broytman <phd@phdru.name>
Sun, 4 Aug 2019 08:24:32 +0000 (11:24 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 4 Aug 2019 08:24:32 +0000 (11:24 +0300)
playbooks/debian/init-local-phd.yml

index d71f24f0a28c1e150dcaa62e1f383697444c8d0c..2a740e51e4b06ab01f86ae8d878d0c4fcfb63553 100644 (file)
       user:
         name: phd
         groups: "{{ system_groups }}"
+    - name: Install X11
+      become: true
+      apt:
+        autoclean: yes
+        autoremove: yes
+        install_recommends: no
+        name: ['fvwm', 'rxvt-unicode', 'xorg']
+        purge: yes
+        state: latest
+        update_cache: yes