diff --git a/playbooks/update-packages.yml b/playbooks/update-packages.yml deleted file mode 100644 index 2a60a0b..0000000 --- a/playbooks/update-packages.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -- hosts: all - become: true - tasks: - - name: Update apt packages - apt: - update_cache: yes - upgrade: yes - when: ansible_distribution == 'Debian' - - name: Update rpm packages - dnf: - name: "*" - state: latest - when: ansible_distribution == 'Fedora'