From: Christian Heller <c.heller@plomlompom.de>
Date: Thu, 23 Mar 2017 02:40:27 +0000 (+0100)
Subject: Ansible script: Improve X stuff.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/static/%7B%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/ledger?a=commitdiff_plain;h=21693891b254a02060bbbdec74f36f1d79c93101;p=config

Ansible script: Improve X stuff.
---

diff --git a/ansible/config.yml b/ansible/config.yml
index 4b388ff..16b5651 100644
--- a/ansible/config.yml
+++ b/ansible/config.yml
@@ -22,6 +22,15 @@
   - name: APT - dist-upgrade
     apt: upgrade=dist
 
+  # Upgrade kernel.
+  - name: ensure newest kernel and grub are installed
+    apt: name={{item}} state=present
+    with_items:
+    - linux-image-amd64
+    - grub2
+  - name: update grub
+    shell: update-grub
+
   # Configure console.
   - name: symlink console config files
     file: state=link force=yes src={{item}} dest={{item|basename|regex_replace('___','/')}}
@@ -78,10 +87,13 @@
     - xserver-xorg-input-evdev  # supports all input devices the kernel knows about
     - xinit  # contains startx
     - libpam-systemd  # needed to start X as non-root
+  - name: ensure 3d acceleration and optimus switch
+    - libgl1-mesa-dri  # necessary for OpenGL 3D acceleration to work
+    - bumblebee-nvidia
+    - primus
   - name: ensure basic X tools
     apt: name={{item}} state=present
     with_items:
-    - libgl1-mesa-dri  # necessary for OpenGL 3D acceleration to work
     - xterm
     - x11-xserver-utils  # includes xrdb which applies .Xresources files
     - redshift