aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles/snap/tasks/main.yml
blob: 46fd3c5082d4761d5713da399a886e27a809b3b9 (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
- name: Check if snap is installed
  command: snap --version
  register: snap_version
  changed_when: no
  failed_when: no

- become: yes
  when: snap_version.rc == 0 and etc_versioned
  block:
    - name: There are uncommitted changes
      command: git status --porcelain=v1
      args:
        chdir: /etc
      register: git_status
      changed_when: no
      failed_when: no

    - name: All changes are snap changes
      shell: git status --porcelain=v1 | cut -c 4- | grep -G -v '^systemd/system/' | grep -G -v '/snap\.\|snap-'
      args:
        chdir: /etc
      register: only_snap
      changed_when: no
      failed_when: no

    - name: Commit snap changes
      command: etckeeper commit 'after snap run'
      when: git_status.stdout and only_snap.rc != 0