refactor ♻️: Refactor shell task in proxmox.yml to use 'cmd' keyword

Updated the shell task in proxmox.yml to utilize the 'cmd' keyword for better readability and consistency.
This commit is contained in:
2025-12-16 20:39:02 +01:00
parent aa640fa23f
commit 6d7748a127

View File

@@ -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)