Try me now, no linuxmint mentions needed

Signed-off-by: Dan Levy <dan@danlevy.net>
Upstream-commit: 9728269424461696cf2223ebb723828041da1f61
Component: engine
This commit is contained in:
Dan Levy
2015-09-25 19:07:59 -06:00
parent 239fd6e7ef
commit f1d2880874
+15
View File
@@ -53,6 +53,7 @@ echo_docker_as_nonroot() {
# Check if this is a forked Linux distro
check_forked() {
# Check for lsb_release command existence, it usually exists in forked distros
if command_exists lsb_release; then
# Check if the `-u` option is supported
@@ -76,6 +77,20 @@ check_forked() {
cat <<-EOF
Upstream release is '$lsb_dist' version '$dist_version'.
EOF
else
if [ -r /etc/debian_version ]; then
# We're Debian and don't even know it!
lsb_dist=debian
dist_version="$(cat /etc/debian_version | sed 's/\/.*//' | sed 's/\..*//')"
case "$dist_version" in
8)
dist_version="jessie"
;;
7)
dist_version="wheezy"
;;
esac
fi
fi
fi
}