doc/researchAnsible: fixed some typos

Signed-off-by: Marc Mattmüller <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmüller 2023-09-05 14:58:55 +02:00
parent 2a85c3ae25
commit d384814fb3
1 changed files with 3 additions and 3 deletions

View File

@ -1288,13 +1288,13 @@ the API access token and then it is straight forward:
SERVER="http://10.115.101.101:8080"
COOKIEJAR="$(mktemp)"
# replave <token> with the string of the generated token in the previous step:
# replace <token> with the string of the generated token in the previous step:
CRUMB=$(curl -u "developer:<token>" --cookie-jar "$COOKIEJAR" "$SERVER/crumbIssuer/api/xml?xpath=concat(//crumbRequestField,%22:%22,//crumb)")
# trigger build with default parameters:
# trigger build with default job parameters:
curl -X POST -u "developer:<token>" --cookie "$COOKIEJAR" -H "$CRUMB" "$SERVER"/job/doc-pipeline/buildWithParameters?token=buildDocToken
# trigger build with specific parameters:
# trigger build with specific job parameters:
curl -X POST -u "developer:<token>" --cookie "$COOKIEJAR" -H "$CRUMB" "$SERVER"/job/doc-pipeline/buildWithParameters?token=buildDocToken --data VERSION="0.0.2" --data DO_CLEAN_BUILD=true