getting country e location from configuration

This commit is contained in:
Lucio Lelii 2022-06-22 14:29:14 +02:00
parent 4c4b4d29ee
commit a894e23b23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class ContainerProfileBuilder {
node.profile().description().newArchitecture().platformType(System.getProperty("os.arch")).smpSize(0)
.smtSize(0);
node.profile().newSite().domain("It").country("It").location("Rome").latitude("1").longitude("1");
node.profile().newSite().domain(cfg.site().getCountry()).country(cfg.site().getCountry()).location(cfg.site().getLocation()).latitude("1").longitude("1");
ArrayList<HashMap<String, String>> info = cpuInfo();