issue_896: Made some more changes after viewing PR
Some checks are pending
Dotnet Provisioner Unit Tests / Restore and Run Unit Tests (ubuntu-20.04) (push) Waiting to run
Dotnet Provisioner Unit Tests / Restore and Run Unit Tests (windows-2022) (push) Waiting to run
Dotnet Provisioner Unit Tests / Evaluate Tests (push) Blocked by required conditions
HIRS Build and Unit Test / ACA_Provisioner_Unit_Tests (push) Waiting to run
HIRS System Tests / DockerTests (push) Waiting to run

This commit is contained in:
TheSilentCoder 2025-02-10 15:57:31 -05:00
parent 6215a6675b
commit 1b502298e2
2 changed files with 4 additions and 2 deletions

View File

@ -236,7 +236,9 @@ public class ComponentIdentifier {
.map(Object::toString)
.collect(Collectors.joining(",")));
}
sb.append(", componentPlatformCert=");
if (sb.charAt(sb.length() - 1) == ',') {
sb.deleteCharAt(sb.length() - 1);
}
sb.append("}");
return sb.toString();

View File

@ -5,7 +5,7 @@ After=network.target
[Service]
User=root
Group=root
ExecStart=/usr/bin/bash /opt/hirs/aca/scripts/aca/aca_bootRun.sh -d -w
ExecStart=/usr/bin/bash /opt/hirs/aca/scripts/aca/aca_bootRun.sh -w
SuccessExitStatus=0
Restart=always
RestartSec=60