mirror of
https://github.com/Jamesits/pve-fake-subscription
synced 2025-12-06 02:56:59 -05:00
39 lines
1.2 KiB
Markdown
39 lines
1.2 KiB
Markdown
I am really poor and I really can't afford a license. I just want to get rid of the annoying dialog on every login.
|
|
|
|
## Features
|
|
|
|
* Works for:
|
|
- Proxmox VE (5.x or later, tested up to 7.0)
|
|
- Proxmox Mail Gateway (5.x or later)
|
|
- Proxmox Backup Server (1.x)
|
|
* Non-intrusive, no changes to any system file, persists between system updates
|
|
* Comes with standard Debian package, easy to manage and automate
|
|
* You can uninstall at any time, hassle-free
|
|
* **No JavaScript is involved** in the whole process
|
|
|
|
## Installation
|
|
|
|
* Go to [release](https://github.com/Jamesits/pve-fake-subscription/releases/latest) to download the latest release
|
|
* Run `dpkg -i pve-fake-subscription_*.deb` as root on every Proxmox VE node
|
|
* (Optional) `echo "127.0.0.1 shop.maurer-it.com" | sudo tee -a /etc/hosts` to prevent fake keys being sent to the Proxmox servers
|
|
|
|
## Uninstallation
|
|
|
|
Run as root:
|
|
|
|
```shell
|
|
apt purge pve-fake-subscription
|
|
```
|
|
|
|
This will revert your system to a "no subscription key" status.
|
|
|
|
## Building the Package
|
|
|
|
Run everything as root on a Debian 10 system:
|
|
|
|
```shell
|
|
apt-get install ruby ruby-dev rubygems build-essential
|
|
gem install --no-ri --no-rdoc fpm
|
|
./package.sh
|
|
```
|