mirror of
https://github.com/dflow-sh/dflow.git
synced 2026-04-26 13:55:56 +03:00
[GH-ISSUE #481] Onboarding fails on Proxmox with Unsupported OS Version #306
Labels
No labels
backend
bug
developer
documentation
enhancement
enhancement
enhancement
feature
feature
fix
frontend
frontend
good first issue
help wanted
pull-request
safety-check
security
styles
styles
templates
templates
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/dflow#306
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @manikanta9176 on GitHub (Oct 15, 2025).
Original GitHub issue: https://github.com/dflow-sh/dflow/issues/481
Originally assigned to: @manikanta9176 on GitHub.
Users get 'Unsupported OS Version' during onboarding when running on Proxmox or LXC containers. This happens because we use
lsb_releaseto detect the OS, but Proxmox doesn’t include it by default.Quick workaround: users can install it manually with
sudo apt update && sudo apt install -y lsb-release.Expected fix: update onboarding to fallback to /etc/os-release or another method if 'lsb_release' is not available.
@manikanta9176 commented on GitHub (Nov 17, 2025):
This is now fixed. We replaced lsb_release with /etc/os-release as the primary OS detection method, so Proxmox and LXC containers are detected correctly. Closing this issue.