diff options
-rw-r--r-- | roles/pacman/tasks/main.yml | 8 | ||||
-rw-r--r-- | roles/snap/tasks/main.yml | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/roles/pacman/tasks/main.yml b/roles/pacman/tasks/main.yml index 31b4352..3f5500f 100644 --- a/roles/pacman/tasks/main.yml +++ b/roles/pacman/tasks/main.yml @@ -22,7 +22,9 @@ when: not etc_versioned - name: There are uncommitted changes - shell: cd /etc && git status --porcelain=v1 + command: git status --porcelain=v1 + args: + chdir: /etc register: git_status changed_when: no @@ -31,7 +33,9 @@ when: not git_status.stdout - name: All changes are pacman.d/gnupg - shell: cd /etc && git status --porcelain=v1 | cut -c 4- | grep -G -v '^pacman.d/gnupg/' + shell: git status --porcelain=v1 | cut -c 4- | grep -G -v '^pacman.d/gnupg/' + args: + chdir: /etc register: only_gnupg changed_when: no ignore_errors: yes diff --git a/roles/snap/tasks/main.yml b/roles/snap/tasks/main.yml index 0be58cf..039aa74 100644 --- a/roles/snap/tasks/main.yml +++ b/roles/snap/tasks/main.yml @@ -9,12 +9,16 @@ when: snap_version.rc == 0 and etc_versioned block: - name: There are uncommitted changes - shell: cd /etc && git status --porcelain=v1 + command: git status --porcelain=v1 + args: + chdir: /etc register: git_status changed_when: no - name: All changes are snap changes - shell: cd /etc && git status --porcelain=v1 | cut -c 4- | grep -G -v '^systemd/system/' | grep -G -v '/snap\.\|snap-' + 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 ignore_errors: yes |