Proxmox-Datacenter Manager #215

Closed
opened 2026-02-04 17:11:43 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @hypermoist on GitHub (Dec 26, 2024).

Have you read and understood the above guidelines?

yes

📜 What is the name of the script you are using?

Proxmox-Datacenter Manager

📂 What was the exact command used to execute the script?

bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/proxmox-datacenter-manager.sh)"

📝 Provide a clear and concise description of the issue.

When trying to run the install script the script fails with a bunch of bash errors

⚙️ What settings are you using?

  • Default Settings
  • Advanced Settings

🖥️ Which Linux distribution are you using?

Debian 12

🔄 Steps to reproduce the issue.

Just run the install script

Paste the full error output (if available).

/dev/fd/63: line 1: 404:: command not found
bash: line 19: header_info: command not found
bash: line 20: base_settings: command not found
bash: line 23: variables: command not found
bash: line 24: color: command not found
bash: line 25: catch_errors: command not found
bash: line 39: start: command not found
bash: line 40: build_container: command not found
bash: line 41: description: command not found
bash: line 43: msg_ok: command not found
proxmox-datacenter-manager setup has been successfully initialized!
 Access it using the following URL:
https://:8443

🖼️ Additional context (optional).

No response

Originally created by @hypermoist on GitHub (Dec 26, 2024). ### ✅ Have you read and understood the above guidelines? yes ### 📜 What is the name of the script you are using? Proxmox-Datacenter Manager ### 📂 What was the exact command used to execute the script? bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/proxmox-datacenter-manager.sh)" ### 📝 Provide a clear and concise description of the issue. When trying to run the install script the script fails with a bunch of bash errors ### ⚙️ What settings are you using? - [X] Default Settings - [ ] Advanced Settings ### 🖥️ Which Linux distribution are you using? Debian 12 ### 🔄 Steps to reproduce the issue. Just run the install script ### ❌ Paste the full error output (if available). ``` /dev/fd/63: line 1: 404:: command not found bash: line 19: header_info: command not found bash: line 20: base_settings: command not found bash: line 23: variables: command not found bash: line 24: color: command not found bash: line 25: catch_errors: command not found bash: line 39: start: command not found bash: line 40: build_container: command not found bash: line 41: description: command not found bash: line 43: msg_ok: command not found proxmox-datacenter-manager setup has been successfully initialized! Access it using the following URL: https://:8443 ``` ### 🖼️ Additional context (optional). _No response_
Author
Owner

@rbradley0 commented on GitHub (Dec 26, 2024):

On Line 2 of the Proxmox Datacenter Manager setup script, it includes raw in the source url for build.func which is an error.

If you were to download the setup script and manually remove it, the script will work correctly.

It should look as follows:

- source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/raw/main/misc/build.func)
+ source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
@rbradley0 commented on GitHub (Dec 26, 2024): On [Line 2](https://github.com/community-scripts/ProxmoxVE/blob/cf8dd2bfac113665d6ee4ea550f13ce4c2ebe2cc/ct/proxmox-datacenter-manager.sh#L2) of the Proxmox Datacenter Manager setup script, it includes `raw` in the source url for build.func which is an error. If you were to download the setup script and manually remove it, the script will work correctly. It should look as follows: ```diff - source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/raw/main/misc/build.func) + source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) ```
Author
Owner

@hypermoist commented on GitHub (Dec 26, 2024):

source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)

Can Confirm this was the issue :)

@hypermoist commented on GitHub (Dec 26, 2024): > ```diff > source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) > ``` Can Confirm this was the issue :)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#215