sync code

This commit is contained in:
Ned Wright
2026-01-03 18:59:01 +00:00
parent c1058db57d
commit 2105628f05
188 changed files with 8272 additions and 2723 deletions

View File

@@ -98,6 +98,7 @@ enum class Service {
IDA_IDN_BG,
IOT_ACCESS_CONTROL,
HORIZON_TELEMETRY,
ERM,
COUNT
};
@@ -177,6 +178,7 @@ getServiceString(const Service service)
case (Service::IDA_IDN_BG): return "ida-idn-bg";
case (Service::IOT_ACCESS_CONTROL): return "iot-access-control";
case (Service::HORIZON_TELEMETRY): return "horizon-telemetry";
case (Service::ERM): return "erm";
default:
cerr
<< "Internal Error: the provided service ("
@@ -380,6 +382,11 @@ getServiceConfig (const Service service)
filesystem_path + "/conf/cp-nano-horizon-telemetry-debug-conf.json",
log_files_path + "/nano_agent/cp-nano-horizon-telemetry.dbg"
);
case (Service::ERM):
return ServiceConfig(
filesystem_path + "/conf/cp-nano-erm-conf.json",
log_files_path + "/nano_agent/cp-nano-erm.dbg"
);
default:
cerr
<< "Internal Error: the provided service ("