1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #30480 from flx42/install-debian-stretch-support

install: map debian_version 9.X to debian stretch
This commit is contained in:
Tianon Gravi 2017-01-30 13:59:44 -08:00 committed by GitHub
commit 1202592f6e

View file

@ -178,6 +178,9 @@ check_forked() {
lsb_dist=debian
dist_version="$(cat /etc/debian_version | sed 's/\/.*//' | sed 's/\..*//')"
case "$dist_version" in
9)
dist_version="stretch"
;;
8|'Kali Linux 2')
dist_version="jessie"
;;