From dc52a02df76569110e0dae1319b750017a628441 Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 16 Dec 2025 21:05:38 +0100 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Refactor=20uni?= =?UTF-8?q?nstall=20script=20task=20to=20use=20ansible.builtin.shell=20ins?= =?UTF-8?q?tead=20of=20ansible.builtin.command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the uninstall script task to use `ansible.builtin.shell` for better command execution and flexibility. --- tasks/proxmox.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/proxmox.yml b/tasks/proxmox.yml index 351edf6..16f6037 100644 --- a/tasks/proxmox.yml +++ b/tasks/proxmox.yml @@ -23,7 +23,7 @@ mode: '0755' # Make it executable - name: Run uninstall script - ansible.builtin.command: bash /tmp/pve-mod-gui-sensors.sh uninstall + ansible.builtin.shell: bash /tmp/pve-mod-gui-sensors.sh uninstall ignore_errors: true - name: Wait for Proxmox Web GUI to be up