aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles/apt/tasks/main.yml
blob: f00d4fdfdd0f56ef81849711c3276093148e98cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
- name: Check if apt is installed
  command: apt-get --version
  register: apt_version
  changed_when: no
  failed_when: no
  ignore_errors: yes

- when: apt_version.rc == 0
  become: yes
  block:
    - name: Upgrade packages
      apt:
        upgrade: full
      notify:
        - Reboot
        - Wait for connectivity

    - name: Flush handlers
      meta: flush_handlers

    - name: Clean up dependencies
      apt:
        autoremove: yes
        purge: yes
      notify:
        - Reboot
        - Wait for connectivity

    - name: Flush handlers
      meta: flush_handlers