Last active
May 6, 2023 20:51
-
-
Save kvaps/b74d86261f557404a319ab3373dd95b1 to your computer and use it in GitHub Desktop.
Proxmox disable subscription window permanent patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat > /etc/systemd/system/pve-patcher.service <<EOT | |
[Unit] | |
Description=PVE subscription popup disabler | |
[Service] | |
Type=oneshot | |
RemainAfterExit=yes | |
ExecStart=/bin/sed -i "s/data.status !== 'Active'/false/g" /usr/share/pve-manager/js/pvemanagerlib.js /usr/share/pve-manager/touch/pvemanager-mobile.js | |
[Install] | |
WantedBy=pveproxy.service | |
EOT | |
systemctl daemon-reload | |
systemctl enable pve-patcher.service | |
systemctl start pve-patcher.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment