Tests: Malformed JSON duplicate customization

Fixes #1612
This commit is contained in:
Thomas Lavocat 2021-08-03 09:16:12 +02:00 committed by Sanne Raymaekers
parent 5a4d6bdfe7
commit fd81593026

View file

@ -442,7 +442,18 @@ function createReqFileAWS() {
"customizations": {
"packages": [
"postgresql"
]${SUBSCRIPTION_BLOCK}
]${SUBSCRIPTION_BLOCK},
"users":[
{
"name": "user1",
"groups": ["wheel"],
"key": "$(cat /tmp/usertest.pub)"
},
{
"name": "user2",
"key": "$(cat /tmp/usertest.pub)"
}
]
},
"image_requests": [
{
@ -467,20 +478,7 @@ function createReqFileAWS() {
}
}
}
],
"customizations": {
"users":[
{
"name": "user1",
"groups": ["wheel"],
"key": "$(cat /tmp/usertest.pub)"
},
{
"name": "user2",
"key": "$(cat /tmp/usertest.pub)"
}
]
}
]
}
EOF
}