From 54589ca033b89d663c333cd4e4ffbcbf70dee439 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 16 Sep 2025 12:28:32 -0700 Subject: [PATCH] Add verbosity to ansible-pull command. --- tasks/general/cron/ansible.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/general/cron/ansible.yml b/tasks/general/cron/ansible.yml index f646d9f..907041e 100644 --- a/tasks/general/cron/ansible.yml +++ b/tasks/general/cron/ansible.yml @@ -6,7 +6,7 @@ user: ansible name: "Ansible Sync" minute: "*/30" - job: "sudo {{ ansible_pull_exec.stdout }} -o -U {{ git_repo_http }} --checkout {{ branch }}" + job: "sudo {{ ansible_pull_exec.stdout }} -v -o -U {{ git_repo_http }} --checkout {{ branch }}" state: present disabled: "{{ 'yes' if no_telem else 'no' }}"