r/Proxmox • u/PotentTurnip • 8h ago
Guide Want to permanently rid yourself of the no-subscription nag?
So, I got tired of having to manually get rid of the no subscription nag pop up every time I upgraded Proxmox. It became tedious. Eventually I wrote an APT hook that listens for package updates. Whenever apt runs, it triggers a sed command to find and replace the line of JS that triggers the nag pop-up.
First, open shell from the dashboard.
Create the apt hook:
nano /etc/apt/apt.conf.d/99-pve-nag-remover
Paste the following into the new configuration file:
DPkg::Post-Invoke { "sed -i.bak \"s/res.data.status.toLowerCase() !== 'active'/false/g\" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js"; };
Save the file and exit nano.
Restart the web service:
systemctl restart pveproxy.service
Now every time you run update/upgrade, the no-subscription nag will automatically be disabled.


