ajouter le support de buster
This commit is contained in:
parent
247b449752
commit
c33ff4c5ef
|
@ -25,7 +25,7 @@ SYSDIST_ALIASES=(
|
||||||
# attention: dans *_SYSVERS, les noms doivent être ordonnés du plus récent au
|
# attention: dans *_SYSVERS, les noms doivent être ordonnés du plus récent au
|
||||||
# moins récent
|
# moins récent
|
||||||
debianlike_SYSVERS=()
|
debianlike_SYSVERS=()
|
||||||
debian_SYSVERS=(stretch jessie wheezy squeeze lenny etch)
|
debian_SYSVERS=(buster stretch jessie wheezy squeeze lenny etch)
|
||||||
ubuntu_SYSVERS=(oneiric natty maverick lucid karmic jaunty intrepid hardy)
|
ubuntu_SYSVERS=(oneiric natty maverick lucid karmic jaunty intrepid hardy)
|
||||||
redhatlike_SYSVERS=()
|
redhatlike_SYSVERS=()
|
||||||
ol_SYSVERS=(ol7 ol6 redhat7 redhat6)
|
ol_SYSVERS=(ol7 ol6 redhat7 redhat6)
|
||||||
|
@ -35,7 +35,7 @@ centos_SYSVERS=(centos7 centos6 centos5 centos4 redhat7 redhat6 redhat5 redhat4)
|
||||||
suse_SYSVERS=()
|
suse_SYSVERS=()
|
||||||
gentoo_SYSVERS=()
|
gentoo_SYSVERS=()
|
||||||
SYSVER_ALIASES=(
|
SYSVER_ALIASES=(
|
||||||
9=stretch 8=jessie 7=wheezy 6=squeeze 5=lenny 4=etch
|
10=buster 9=stretch 8=jessie 7=wheezy 6=squeeze 5=lenny 4=etch
|
||||||
11.10=oneiric 11.04=natty 10.10=maverick 10.04=lucid 9.10=karmic 9.04=jaunty 8.10=intrepid 8.04=hardy
|
11.10=oneiric 11.04=natty 10.10=maverick 10.04=lucid 9.10=karmic 9.04=jaunty 8.10=intrepid 8.04=hardy
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -143,6 +143,7 @@ function __compute_sysinfos() {
|
||||||
esac
|
esac
|
||||||
if [ -n "$debian_version" ]; then
|
if [ -n "$debian_version" ]; then
|
||||||
case "$debian_version" in
|
case "$debian_version" in
|
||||||
|
10*|buster*) MYSYSDIST=(debian debianlike); MYSYSVER=(buster);;
|
||||||
9*|stretch*) MYSYSDIST=(debian debianlike); MYSYSVER=(stretch);;
|
9*|stretch*) MYSYSDIST=(debian debianlike); MYSYSVER=(stretch);;
|
||||||
8*|jessie*) MYSYSDIST=(debian debianlike); MYSYSVER=(jessie);;
|
8*|jessie*) MYSYSDIST=(debian debianlike); MYSYSVER=(jessie);;
|
||||||
7*|wheezy*) MYSYSDIST=(debian debianlike); MYSYSVER=(wheezy);;
|
7*|wheezy*) MYSYSDIST=(debian debianlike); MYSYSVER=(wheezy);;
|
||||||
|
|
Loading…
Reference in New Issue