-
-
Save judexzhu/8819ddafc4b3765838d42eacb2723656 to your computer and use it in GitHub Desktop.
Proxmox disable subscription window permanent patch
This file contains hidden or 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