11 lines
450 B
YAML
11 lines
450 B
YAML
|
---
|
||
|
# credit: https://johnscs.com/remove-proxmox51-subscription-notice/ & https://github.com/foundObjects/pve-nag-buster
|
||
|
- name: Modify line in file to remove nag message
|
||
|
become: true
|
||
|
replace:
|
||
|
path: /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
|
||
|
regexp: 'res === null \|\| res === undefined \|\| !res \|\| res[\s\n]*\.data\.status\.toLowerCase\(\) !== .active.'
|
||
|
replace: "false"
|
||
|
backup: yes
|
||
|
notify: restart pveproxy
|