Some repositories couldn't be updated, please check application logs for details.
BadCredentialsException: 401 {"message": "Bad credentials", "documentation_url": "https://docs.github.com/rest", "status": "401"}

aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--roles/pacman/tasks/main.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/pacman/tasks/main.yml b/roles/pacman/tasks/main.yml
index 5ebe638..37885f3 100644
--- a/roles/pacman/tasks/main.yml
+++ b/roles/pacman/tasks/main.yml
@@ -11,8 +11,13 @@
community.general.pacman:
update_cache: yes
upgrade: yes
+ register: pacman_result
notify: reboot
+ - debug:
+ var: pacman_result.packages
+ when: pacman_result.changed
+
- name: Flush handlers
meta: flush_handlers
rescue:
@@ -48,7 +53,12 @@
community.general.pacman:
update_cache: yes
upgrade: yes
+ register: pacman_result
notify: reboot
+ - debug:
+ var: pacman_result.packages
+ when: pacman_result.changed
+
- name: Flush handlers
meta: flush_handlers