UX improvements to installer and message board. (#131)

- Changed y/n pattern of setup questions.
- Registry address display during install.
- Improve evernode status output.
- Include config files in 'evernode log' output.
- Fixed issue with country code detection on dns addresses.
- Added space character validity check for dns address.
This commit is contained in:
Ravin Perera
2022-04-29 08:34:43 +05:30
committed by GitHub
parent 2abd0874a7
commit 0ec4313c85
4 changed files with 47 additions and 23 deletions

View File

@@ -142,6 +142,7 @@ int main(int argc, char **argv)
conf::create(host_addr, "", inst_count, cpu_us, ram_kbytes, swap_kbytes, disk_kbytes) != 0)
{
std::cerr << "Invalid Sashimono Agent config creation args.\n";
std::cerr << inst_count << ", " << cpu_us << ", " << ram_kbytes << ", " << swap_kbytes << ", " << disk_kbytes << "\n";
return 1;
}
}