refactor ♻️: Refactor task names and add namespace for clarity
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 12s
Gitleaks Scan / gitleaks (push) Successful in 4s
Markdown Lint / markdown-lint (push) Successful in 5s
ai-reviews / Review PR (pull_request) Successful in 24s
ansible-lint / Ansible Lint (pull_request) Successful in 12s
Gitleaks Scan / gitleaks (pull_request) Successful in 5s
Markdown Lint / markdown-lint (pull_request) Successful in 5s

This commit refactors the task names to improve readability and adds a namespace to avoid conflicts with other modules. It also fixes typos in task names and updates module references accordingly.
This commit is contained in:
2026-02-08 07:12:21 +01:00
parent 12b1b87af1
commit 1f2ff1d9ba
2 changed files with 11 additions and 11 deletions

View File

@@ -15,9 +15,9 @@
ansible.builtin.systemd_service:
daemon_reexec: true
- name: patch legacy proxmoxlib.js
- name: Ppatch legacy proxmoxlib.js
block:
- name: Patch legacy proxmoxlib.js
- name: Ppatch legacy proxmoxlib.js
ansible.builtin.replace:
path: /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
regexp: "if \\(data.status !== 'Active'\\)"
@@ -41,11 +41,11 @@
content: "{{ proxmoxlib_js_after.stat.checksum }}\n"
- name: Restart pveproxy
systemd:
ansible.builtin.systemd:
name: pveproxy
state: restarted
- name: patch minified proxmoxlib.js
- name: Patch minified proxmoxlib.js
block:
- name: Patch minified proxmoxlib.min.js
ansible.builtin.replace:
@@ -70,6 +70,6 @@
content: "{{ proxmoxlib_min_after.stat.checksum }}\n"
- name: Restart pveproxy
systemd:
ansible.builtin.systemd:
name: pveproxy
state: restarted