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