Switched installer script to using FastNetMon from official repositories for Ubuntu 18.04 and 19.04

This commit is contained in:
Pavel Odintsov 2019-07-11 19:55:45 +01:00
parent 9a85c1b2d8
commit efdbf24c0e

View File

@ -212,8 +212,8 @@ sub main {
$cpus_number = get_logical_cpus_number();
# We could get huge speed benefits with this option
if ($cpus_number > 1) {
print "You have really nice server with $cpus_number CPU's and we will use them all for build process :)\n";
if ($cpus_number > 8) {
print "You have really nice server with $cpus_number CPUs and we will use them all for build process :)\n";
$make_options = "-j $cpus_number";
}
@ -239,6 +239,18 @@ sub main {
send_tracking_information('started');
# For these Ubuntu version we have FastNetMon in standard repos, will use it instead
if ($distro_type eq 'ubuntu' && (
$distro_version =~ m/^18\.04/ or
$distro_version =~ m/^19\.04/)) {
apt_get("fastnetmon");
send_tracking_information('finished');
exit(0);
}
if ($build_binary_environment) {
install_gcc();
install_boost_builder();