From 1b6d996baf847e6f0939265d2538f52695f2aae3 Mon Sep 17 00:00:00 2001 From: Michael Buchmann Date: Tue, 4 Feb 2025 14:18:31 -0600 Subject: [PATCH] Updated Add_a_Standard_Rack_Node to remove quotes from NIE --- operations/node_management/Add_a_Standard_Rack_Node.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operations/node_management/Add_a_Standard_Rack_Node.md b/operations/node_management/Add_a_Standard_Rack_Node.md index 14068d8ec273..d401dab34e88 100644 --- a/operations/node_management/Add_a_Standard_Rack_Node.md +++ b/operations/node_management/Add_a_Standard_Rack_Node.md @@ -66,7 +66,7 @@ For this procedure, a new object must be created in the SLS and modifications wi ```bash NID=1 ALIAS=nid000001 - jq -n --arg ALIAS "${ALIAS}" --arg NID "${NID}" '{ + jq -n --arg ALIAS "${ALIAS}" --argjson NID "${NID}" '{ Aliases:[$ALIAS], NID: $NID, Role: "Compute" @@ -80,7 +80,7 @@ For this procedure, a new object must be created in the SLS and modifications wi "Aliases": [ "nid000001" ], - "NID": "1", + "NID": 1, "Role": "Compute" } ```