Improved Debian Buster detection. Will use FastNetMon from official repositories instead of manual compilation. Closes #789

This commit is contained in:
Pavel Odintsov 2020-01-19 13:09:07 +00:00
parent 2e587dd678
commit 78a7b039d8

@ -324,8 +324,8 @@ sub main {
$install_from_official_distro = 1;
}
# For Debian 9 we also have FastNetMon in standard repos
if ($distro_type eq 'debian' && $distro_version =~ m/^10\.0/) {
# For Debian Buster we also have FastNetMon in standard repos
if ($distro_type eq 'debian' && $distro_version =~ m/^10\./) {
$install_from_official_distro = 1;
}