From ae2af0ce6c778ac66795f6ab4c84e27b0ac687eb Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 16 Dec 2025 19:25:16 +0100 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Rename=20task?= =?UTF-8?q?=20to=20'Run=20uninstall=20script'=20and=20update=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refactored the task name and updated the associated command for clarity and consistency. --- tasks/proxmox.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/proxmox.yml b/tasks/proxmox.yml index f80a9d9..57140d3 100644 --- a/tasks/proxmox.yml +++ b/tasks/proxmox.yml @@ -29,13 +29,13 @@ mode: "0755" remote_src: yes - - name: Run script with predefined input + - name: Run uninstall script ansible.builtin.shell: | - printf "a\nC\nN\n2\n" | /usr/local/bin/pve-mod-gui-sensors.sh + /usr/local/bin/pve-mod-gui-sensors.sh uninstall - - name: Run pve-mod-gui-sensors script with predefined answers (once) + - name: Run pve-mod-gui-sensors script with predefined answers expect: - command: /usr/local/src/pve-mod-gui-sensors.sh + command: /usr/local/src/pve-mod-gui-sensors.sh install responses: 'Display temperatures for all cores \[C\] or average per CPU \[a\].*\(C/a\):.*': 'a' 'Display temperatures in Celsius \[C\] or Fahrenheit \[f\].*\(C/f\):.*': 'c'