Skip to content

Proxmox Version Check Fails on 8.4 Despite Meeting Minimum RequirementΒ #4370

@D3M0NYK

Description

@D3M0NYK

βœ… 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

Thanks for maintaining and supporting these excellent helper scripts!

πŸ”„ Steps to reproduce the issue.

  1. Ensure your system is running Proxmox VE 8.4.x (e.g., pve-manager/8.4.1).
  2. 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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions