associate_ap: improves messages

This commit is contained in:
Jed Reynolds
2020-03-23 17:16:58 -07:00
parent 3e63f97d20
commit 90a3ac8c51

View File

@@ -410,7 +410,7 @@ sub load_db {
} }
} # ~foreach } # ~foreach
} }
print "done\n"; print " done\n";
} }
sub save_db { sub save_db {
@@ -421,7 +421,7 @@ sub save_db {
print "Warning: will over-write database $db_name! "; print "Warning: will over-write database $db_name! ";
} }
$::utils->doCmd($::utils->fmt_cmd("save", $db_name)); $::utils->doCmd($::utils->fmt_cmd("save", $db_name));
print "done\n"; print " done\n";
} }
sub get_radio_bssid { sub get_radio_bssid {
@@ -1162,7 +1162,7 @@ sub adjustForDownload {
$::utils->doCmd($::utils->fmt_cmd("set_cx_state", $::test_mgr, $cx, "RUNNING")); $::utils->doCmd($::utils->fmt_cmd("set_cx_state", $::test_mgr, $cx, "RUNNING"));
print " $cx..." print " $cx..."
} }
print "done\n"; print " done\n";
} # ~adjustForUpload } # ~adjustForUpload
sub quiesceConnections { sub quiesceConnections {
@@ -1383,7 +1383,7 @@ sub doAdd {
} }
$i++; $i++;
} }
print "done\n"; print " done\n";
} }
elsif (defined $::sta_wiphy) { elsif (defined $::sta_wiphy) {
print "Creating virtual radio: $::sta_wiphy.\n"; print "Creating virtual radio: $::sta_wiphy.\n";
@@ -1641,7 +1641,7 @@ if ($::db_preload ne "") {
if(db_exists($::db_preload)==1) { if(db_exists($::db_preload)==1) {
print "Loading scenario $::db_preload..."; print "Loading scenario $::db_preload...";
load_db($::db_preload); load_db($::db_preload);
print "done\n"; print " done\n";
} }
else { else {
print("Scenario [$::db_postload] does not exist. Please create it first."); print("Scenario [$::db_postload] does not exist. Please create it first.");