Skip to content

Commit

Permalink
Updated Add_a_Standard_Rack_Node to remove quotes from NIE
Browse files Browse the repository at this point in the history
  • Loading branch information
mbuchmann-hpe committed Feb 4, 2025
1 parent 98e8752 commit 1b6d996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operations/node_management/Add_a_Standard_Rack_Node.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
}
```
Expand Down

0 comments on commit 1b6d996

Please sign in to comment.