Skip to content
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
dff5504
Fix OS_ID parsing from /etc/os-release
wibisanabama Jun 14, 2026
b631ac6
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 17, 2026
484b0f0
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 18, 2026
a0f2c85
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 19, 2026
f66528a
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 19, 2026
5ac71e0
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 19, 2026
e5f5e59
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 21, 2026
0d68b8f
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 21, 2026
9b93a05
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 22, 2026
9ab217a
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 23, 2026
a919425
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 23, 2026
5683912
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 26, 2026
39946d7
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 27, 2026
07066b8
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jun 30, 2026
1f06ba8
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 2, 2026
c2f531d
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 4, 2026
e90b868
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 4, 2026
d3a4bcf
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 5, 2026
09d0ef6
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 5, 2026
8712efd
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 6, 2026
3054b6b
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 7, 2026
ee6eef8
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 7, 2026
bba5db7
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 8, 2026
62d39af
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 9, 2026
a0f8fb8
Merge branch 'main' into fix-os-release-parsing
wibisanabama Jul 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/server/bin/helpers/check-requirements-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ MIN_GLIBCXX_VERSION="3.4.25"

# Extract the ID value from /etc/os-release
if [ -f /etc/os-release ]; then
OS_ID="$(cat /etc/os-release | grep -Eo 'ID=([^"]+)' | sed -n '1s/ID=//p')"
OS_ID=$(. /etc/os-release && echo $ID)
if [ "$OS_ID" = "nixos" ]; then
echo "Warning: NixOS detected, skipping GLIBC check"
exit 0
Expand Down