diff --git a/hatarashi-pasokom.yaml b/hatarashi-pasokom.yaml index fb76b20..136fadf 100644 --- a/hatarashi-pasokom.yaml +++ b/hatarashi-pasokom.yaml @@ -7,19 +7,22 @@ ansible_sudo_pass: "${{ ANSIBLE_SUDO_PASS }}" tasks: - - name: Update all installed packages using APT module - apt: - name: '*' - state: latest - update_cache: yes - only_upgrade: yes - register: apt_update_status + - debug: + msg: "Pass: ${{ ANSIBLE_SUDO_PASS }}" + + - name: Update all installed packages using APT module + ansible.builtin.apt: + name: '*' + state: latest + update_cache: yes + only_upgrade: yes + register: apt_update_status - - name: Remove packages not needed anymore - apt: - autoremove: yes + - name: Remove packages not needed anymore + ansible.builtin.apt: + autoremove: yes - - name: Reboot when packages were updated - reboot: - post_reboot_delay: 60 - when: apt_update_status.changed \ No newline at end of file + - name: Reboot when packages were updated + ansible.builtin.reboot: + post_reboot_delay: 60 + when: apt_update_status.changed \ No newline at end of file