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

                    
        
                                     
                                                        

                   
                          

                         
 
                                                 

                              



                                             

                   
                         

                         
 
                                  
                                                                
                                                   
- name: As root user
  become: true
  block:
    - 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: All changes in /etc are snap changes?
      ansible.builtin.shell: |
        set -o pipefail && \
        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: false
      failed_when: false

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