Spoolman Service Unit File doesn't use the host and port values from the .env #1455

Closed
opened 2026-02-05 00:52:58 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @darryn-bryant on GitHub (Aug 14, 2025).

Have you read and understood the above guidelines?

yes

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

Spoolman

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

bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/spoolman.sh)"

⚙️ What settings are you using?

  • Default Settings
  • Advanced Settings

🖥️ Which Linux distribution are you using?

Debian 12

📝 Provide a clear and concise description of the issue.

Service Unit File doesn't use the host and port values from the .env

🔄 Steps to reproduce the issue.

Step 1: Install Spoolman
Step 2: Change .env file to set the SPOOLMAN_PORT to 80
Step 3: Restart service with "systemctl restart spoolman.service"

Paste the full error output (if available).

service restarts, but it not accessable on port 80 as expected

🖼️ Additional context (optional).

Suggest changing the service creation from:
ExecStart=uvicorn spoolman.main:app --host 0.0.0.0 --port 7912
to:
ExecStart=uvicorn spoolman.main:app --host "${SPOOLMAN_HOST}" --port "${SPOOLMAN_PORT}"
during install

Originally created by @darryn-bryant on GitHub (Aug 14, 2025). ### ✅ Have you read and understood the above guidelines? yes ### 📜 What is the name of the script you are using? Spoolman ### 📂 What was the exact command used to execute the script? bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/spoolman.sh)" ### ⚙️ What settings are you using? - [x] Default Settings - [ ] Advanced Settings ### 🖥️ Which Linux distribution are you using? Debian 12 ### 📝 Provide a clear and concise description of the issue. Service Unit File doesn't use the host and port values from the .env ### 🔄 Steps to reproduce the issue. Step 1: Install Spoolman Step 2: Change .env file to set the SPOOLMAN_PORT to 80 Step 3: Restart service with "systemctl restart spoolman.service" ### ❌ Paste the full error output (if available). service restarts, but it not accessable on port 80 as expected ### 🖼️ Additional context (optional). Suggest changing the service creation from: ExecStart=uvicorn spoolman.main:app --host 0.0.0.0 --port 7912 to: ExecStart=uvicorn spoolman.main:app --host "${SPOOLMAN_HOST}" --port "${SPOOLMAN_PORT}" during install
OVERLORD added the bug label 2026-02-05 00:52:58 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#1455