diff --git a/Playbooks/update-apt.yaml b/Playbooks/update-apt.yaml new file mode 100644 index 0000000..03f05fb --- /dev/null +++ b/Playbooks/update-apt.yaml @@ -0,0 +1,8 @@ +--- + +- hosts: debian + tasks: + - name: update APT packages + apt: + upgrade: yes + update_cache: yes \ No newline at end of file diff --git a/Playbooks/update-dnf.yaml b/Playbooks/update-dnf.yaml new file mode 100644 index 0000000..94cc1fe --- /dev/null +++ b/Playbooks/update-dnf.yaml @@ -0,0 +1,8 @@ +--- + +- hosts: fedora + tasks: + - name: Upgrade all packages + ansible.builtin.dnf: + name: "*" + state: latest \ No newline at end of file