-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Description
β Have you read and understood the above guidelines?
yes
π What is the name of the script you are using?
build.func via nginxproxymanager.sh
π What was the exact command used to execute the script?
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/nginxproxymanager.sh)"
βοΈ What settings are you using?
- Default Settings
- Advanced Settings
π₯οΈ Which Linux distribution are you using?
No response
π Provide a clear and concise description of the issue.
The helper scripts (e.g., nginxproxymanager.sh) fail to run on Proxmox VE 8.4.x with the error:
β This version of Proxmox Virtual Environment is not supported
Requires Proxmox Virtual Environment Version 8.1 or later.
Exiting...
This happens despite the fact that the environment is running a supported version:
root@host:~# pveversion
pve-manager/8.4.1/2a5fa54a8503f96d
Root Cause
The version check in build.func is too restrictive:
if ! pveversion | grep -Eq "pve-manager/8.[1-3]";This hardcodes accepted versions to 8.1β8.3 and fails for newer (but still compatible) releases such as 8.4.
Suggested Fix
Update the regex to match 8.1 or later more generally. For example:
if ! pveversion | grep -Eq "pve-manager/8\.[1-9]";Environment
- Proxmox VE: 8.4.1
- Affected script: [nginxproxymanager.sh](https://github.com/tteck/Proxmox/blob/main/ct/nginxproxymanager.sh)
- Dependency: [build.func](https://github.com/tteck/Proxmox/blob/main/misc/build.func)
Thanks for maintaining and supporting these excellent helper scripts!
π Steps to reproduce the issue.
- Ensure your system is running Proxmox VE 8.4.x (e.g.,
pve-manager/8.4.1). - Run the following command:
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/nginxproxymanager.sh)"
β Paste the full error output (if available).
β This version of Proxmox Virtual Environment is not supported
Requires Proxmox Virtual Environment Version 8.1 or later.
Exiting...
πΌοΈ Additional context (optional).
No response