[GH-ISSUE #10908] New script contribution is failing - build container function produce error #2339

Closed
opened 2026-02-26 12:52:06 +03:00 by kerem · 1 comment
Owner

Originally created by @heinemannj on GitHub (Jan 18, 2026).
Original GitHub issue: https://github.com/community-scripts/ProxmoxVE/issues/10908

Have you read and understood the above guidelines?

yes

🔎 Did you run the script with verbose mode enabled?

Yes, verbose mode was enabled and the output is included below

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

New script: ebusd

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

bash ct/ebusd.sh

⚙️ What settings are you using?

  • Default Settings
  • Advanced Settings

🖥️ Which Linux distribution are you using?

Debian 13

📈 Which Proxmox version are you on?

pve-manager/9.1.4/5ac30304265fbd8e (running kernel: 6.17.4-2-pve)

📝 Provide a clear and concise description of the issue.

I want to setup a new LXC creation script "ebusd" following https://github.com/community-scripts/ProxmoxVE/tree/main/docs/contribution .

cp ct/debian.sh ct/ebusd.sh
cp install/debian-install.sh install/ebusd-install.sh
#!/usr/bin/env bash
source /usr/local/community-scripts/dev/ProxmoxVE/misc/build.func
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://www.debian.org/

APP="ebusd"
var_tags="${var_tags:-ebusd;mqtt;automation}"
var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-512}"
var_disk="${var_disk:-2}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_unprivileged="${var_unprivileged:-1}"

header_info "$APP"
variables
color
catch_errors

function update_script() {
  header_info
  check_container_storage
  check_container_resources
  if [[ ! -d /var ]]; then
    msg_error "No ${APP} Installation Found!"
    exit
  fi
  msg_info "Updating $APP LXC"
  $STD apt update
  $STD apt -y upgrade
  msg_ok "Updated $APP LXC"
  msg_ok "Updated successfully!"
  exit
}

msg_error "--- start ---"
start
msg_error "--- build_container ---"
build_container
msg_error "--- description ---"
description

msg_ok "Completed successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
#!/usr/bin/env bash

# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://www.debian.org/

source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os

motd_ssh
customize
cleanup_lxc

🔄 Steps to reproduce the issue.

Image

Paste the full error output (if available).

see above

🖼️ Additional context (optional).

No response

Originally created by @heinemannj on GitHub (Jan 18, 2026). Original GitHub issue: https://github.com/community-scripts/ProxmoxVE/issues/10908 ### ✅ Have you read and understood the above guidelines? yes ### 🔎 Did you run the script with verbose mode enabled? Yes, verbose mode was enabled and the output is included below ### 📜 What is the name of the script you are using? New script: ebusd ### 📂 What was the exact command used to execute the script? bash ct/ebusd.sh ### ⚙️ What settings are you using? - [x] Default Settings - [x] Advanced Settings ### 🖥️ Which Linux distribution are you using? Debian 13 ### 📈 Which Proxmox version are you on? pve-manager/9.1.4/5ac30304265fbd8e (running kernel: 6.17.4-2-pve) ### 📝 Provide a clear and concise description of the issue. I want to setup a new LXC creation script "ebusd" following https://github.com/community-scripts/ProxmoxVE/tree/main/docs/contribution . ``` cp ct/debian.sh ct/ebusd.sh cp install/debian-install.sh install/ebusd-install.sh ``` ``` #!/usr/bin/env bash source /usr/local/community-scripts/dev/ProxmoxVE/misc/build.func # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # Source: https://www.debian.org/ APP="ebusd" var_tags="${var_tags:-ebusd;mqtt;automation}" var_cpu="${var_cpu:-1}" var_ram="${var_ram:-512}" var_disk="${var_disk:-2}" var_os="${var_os:-debian}" var_version="${var_version:-13}" var_unprivileged="${var_unprivileged:-1}" header_info "$APP" variables color catch_errors function update_script() { header_info check_container_storage check_container_resources if [[ ! -d /var ]]; then msg_error "No ${APP} Installation Found!" exit fi msg_info "Updating $APP LXC" $STD apt update $STD apt -y upgrade msg_ok "Updated $APP LXC" msg_ok "Updated successfully!" exit } msg_error "--- start ---" start msg_error "--- build_container ---" build_container msg_error "--- description ---" description msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" ``` ``` #!/usr/bin/env bash # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # Source: https://www.debian.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color verb_ip6 catch_errors setting_up_container network_check update_os motd_ssh customize cleanup_lxc ``` ### 🔄 Steps to reproduce the issue. <img width="697" height="485" alt="Image" src="https://github.com/user-attachments/assets/3f146ae2-99ed-407f-a75d-1ea0ec8d3a49" /> ### ❌ Paste the full error output (if available). see above ### 🖼️ Additional context (optional). _No response_
kerem 2026-02-26 12:52:06 +03:00
Author
Owner

@github-actions[bot] commented on GitHub (Jan 18, 2026):

Hello, it looks like you are referencing the old tteck repo.

This repository is no longer used for active scripts.
Please update your bookmarks and use: https://helper-scripts.com

Also make sure your Bash command starts with:

bash <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/...)

This issue is being closed automatically.

<!-- gh-comment-id:3765275863 --> @github-actions[bot] commented on GitHub (Jan 18, 2026): Hello, it looks like you are referencing the **old tteck repo**. This repository is no longer used for active scripts. **Please update your bookmarks** and use: [https://helper-scripts.com](https://helper-scripts.com) Also make sure your Bash command starts with: ```bash bash <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/...) ``` This issue is being closed automatically.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ProxmoxVE#2339
No description provided.