From 1cd941d447dc2adbf67ce94aea0e4f30d84ea4e4 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 21 May 2024 15:44:20 +0200 Subject: [PATCH] fix: update pccs_url in sgx_default_qcnl.conf An extra comma is added to the pccs_url in the sgx_default_qcnl.conf file to correct a possible syntax error. This fix ensures the correct parsing of the JSON object. --- systems/x86_64-linux/sgx-nixos/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/sgx-nixos/default.nix b/systems/x86_64-linux/sgx-nixos/default.nix index ae01c37..349b6cd 100644 --- a/systems/x86_64-linux/sgx-nixos/default.nix +++ b/systems/x86_64-linux/sgx-nixos/default.nix @@ -21,7 +21,7 @@ with lib.metacfg; environment.etc."sgx_default_qcnl.conf".text = '' { - "pccs_url": "https://192.168.122.1:8081/sgx/certification/v4/" + "pccs_url": "https://192.168.122.1:8081/sgx/certification/v4/", "use_secure_cert": false, "collateral_service": "https://api.trustedservices.intel.com/sgx/certification/v4/", "retry_times": 6,