Skip to content

Commit

Permalink
Fix linting in cklein.errata
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiklein committed Oct 19, 2024
1 parent 0df6ebd commit 769cba2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions roles/cklein.errata/tasks/main.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
---
- name: Prefer binaries in ~/bin instead of deb packages
become: true
apt:
ansible.builtin.apt:
name:
- kubectx
state: absent
purge: true

- name: Remove Skype
become: true
command: snap remove skype removes=/snap/bin/skype
ansible.builtin.command: snap remove skype removes=/snap/bin/skype
tags:
- snap

- name: Remove deprecated files
file:
ansible.builtin.file:
path: '{{ item }}'
state: absent
loop:
Expand All @@ -23,7 +24,7 @@
# https://askubuntu.com/questions/1286545/what-commands-exactly-should-replace-the-deprecated-apt-key
- name: Remove certs in /etc/apt/trusted.gpg.d
become: true
file:
ansible.builtin.file:
path: "{{ item }}"
state: absent
with_fileglob:
Expand Down

0 comments on commit 769cba2

Please sign in to comment.