We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13b985 commit a06de09Copy full SHA for a06de09
rc/trafficserver.in
@@ -56,8 +56,6 @@ elif [ -e /etc/gentoo-release ]; then
56
DISTRIB_ID="gentoo"
57
elif [ -e /etc/redhat-release ]; then
58
DISTRIB_ID="redhat" # also exists on Fedora
59
-elif [ -e /etc/lsb-release ]; then
60
- DISTRIB_ID="ubuntu"
61
elif [ -e /etc/debian_version ]; then
62
DISTRIB_ID="debian" # also exists on Ubuntu
63
elif [ -e /etc/slackware-version ]; then
@@ -68,6 +66,8 @@ elif [ "$UNAME_S" = "FreeBSD" ]; then
68
66
DISTRIB_ID="FreeBSD"
69
67
elif nixos-version > /dev/null; then
70
DISTRIB_ID="nixos"
+elif [ -e /etc/lsb-release ]; then
+ DISTRIB_ID="ubuntu"
71
fi
72
73
# We might want to move over to use /etc/system-release for more distros?
0 commit comments