From 6d7748a12764769f71a0c2aef8f82092d1d11d4c Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 16 Dec 2025 20:39:02 +0100 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Refactor=20she?= =?UTF-8?q?ll=20task=20in=20proxmox.yml=20to=20use=20'cmd'=20keyword?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the shell task in proxmox.yml to utilize the 'cmd' keyword for better readability and consistency. --- tasks/proxmox.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/proxmox.yml b/tasks/proxmox.yml index dfd37a2..a518441 100644 --- a/tasks/proxmox.yml +++ b/tasks/proxmox.yml @@ -31,8 +31,8 @@ remote_src: yes - name: Run uninstall script - ansible.builtin.shell: | - /usr/local/bin/pve-mod-gui-sensors.sh uninstall + ansible.builtin.shell: + cmd: /usr/local/bin/pve-mod-gui-sensors.sh uninstall ignore_errors: true when: pve_mod_gui_sensors_installed | default(false)