Merge pull request #8 from realraum/remove-grml-debs
authorNicolas Braud-Santoni <nicolas@braud-santoni.eu>
Sat, 21 Apr 2018 17:45:31 +0000 (19:45 +0200)
committerGitHub <noreply@github.com>
Sat, 21 Apr 2018 17:45:31 +0000 (19:45 +0200)
remove grml etc/scripts packages as we now deploy zsh config via ansible

ansible/roles/base/tasks/main.yaml

index df3b075..f4cbe30 100644 (file)
     - zsh
     - python-apt
 
+- name: make sure grml-(etc|scripts)-core is not installed
+  apt: name={{ item }} state=absent purge=yes
+  with_items:
+    - grml-etc-core
+    - grml-scripts-core
+
 - block:
     - name: install systemd specific packages
       apt: name={{ item }} state=present