aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/roles/apt/tasks/main.yml
blob: d658651b05da118474df7ce90e0cce11b17aec30 (plain) (tree)
1
2
3
4
5
6
7
8
9
                        
              



                      
 

                      
 





                             
 

                      
- name: Upgrade packages
  become: true
  apt:
    update_cache: true
    upgrade: full
  notify: reboot

- name: Flush handlers
  meta: flush_handlers

- name: Clean up dependencies
  become: true
  apt:
    autoremove: true
    purge: true
  notify: reboot

- name: Flush handlers
  meta: flush_handlers