mirror of
https://github.com/Jamesits/pve-fake-subscription
synced 2025-12-08 03:52:47 -05:00
34 lines
1.0 KiB
Markdown
34 lines
1.0 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 any version >=5 (we've tested this from 5.3 to 6.0 without any changes in the code)
|
|
* 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 (you might need to wait a week for the cache to be invalidated because of https://github.com/jordansissel/fpm/issues/1472 )
|
|
|
|
## 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
|
|
|
|
## Uninstallation
|
|
|
|
Run everything as root:
|
|
|
|
```shell
|
|
apt purge pve-fake-subscription
|
|
rm /etc/subscription
|
|
```
|
|
|
|
## 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
|
|
```
|
|
|