aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles/pacman/tasks/main.yml
blob: ed9250d829046db4878a81fecdc37eb62bed84ac (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
- name: Upgrade packages or fail gracefully
  become: true
  block:
    - name: Upgrade packages
      community.general.pacman:
        update_cache: true
        upgrade: true
      register: pacman_result
      notify: reboot

    - name: Show upgraded packages
      ansible.builtin.debug:
        var: pacman_result.packages
      when: pacman_result.changed

    - name: Flush handlers
      ansible.builtin.meta: flush_handlers
  rescue:
    - name: Fail if /etc is not versioned
      ansible.builtin.fail:
        msg: Upgrading packages failed for an unknown reason!
      when: not etc_versioned

    - name: Check for changes in /etc
      ansible.builtin.command: git status --porcelain=v1
      args:
        chdir: /etc
      register: git_status
      changed_when: false
      failed_when: false

    - name: Fail if there're no unstaged changes in /etc
      ansible.builtin.fail:
        msg: Upgrading packages failed for an unknown reason!
      when: not git_status.stdout

    - name: All changes in /etc are in pacman.d/gnupg?
      ansible.builtin.shell: |
        set -o pipefail && \
        git status --porcelain=v1 \
            | cut -c 4- \
            | grep -G -v '^pacman.d/gnupg/'
      args:
        chdir: /etc
      register: only_gnupg
      changed_when: false
      failed_when: false

    - name: Commit changes in /etc
      ansible.builtin.command: |
        etckeeper commit 'pacman: GPG keys'
      when: git_status.stdout and only_gnupg.rc != 0

    - name: Retry upgrading packages
      community.general.pacman:
        update_cache: true
        upgrade: true
      register: pacman_result
      notify: reboot

    - name: Show upgraded packages
      ansible.builtin.debug:
        var: pacman_result.packages
      when: pacman_result.changed

    - name: Flush handlers
      ansible.builtin.meta: flush_handlers