remove grml etc/scripts packages as we now deploy zsh config via ansible
authorChristian Pointner <equinox@realraum.at>
Sat, 21 Apr 2018 17:37:41 +0000 (19:37 +0200)
committerChristian Pointner <equinox@realraum.at>
Sat, 21 Apr 2018 17:37:41 +0000 (19:37 +0200)
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