Skip to content

Commit

Permalink
[PR #1329/f9e549a3 backport][0.15] Fix line breaks in cli examples (#…
Browse files Browse the repository at this point in the history
…1332)

**This is a backport of PR #1329 as merged into main
(f9e549a).**

fixes #1328

Co-authored-by: Matthias Dellweg <mdellweg@redhat.com>
  • Loading branch information
patchback[bot] and mdellweg authored Jan 20, 2023
1 parent 5a46e62 commit 83b53fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGES/1328.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed linebreak issues in remote workflow cli examples.
4 changes: 2 additions & 2 deletions docs/_scripts/remote-collection-token.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pulp ansible remote -t "collection" create \
--name "abar" \
--auth-url "https://sso.qa.redhat.com/auth/realms/redhat-external/protocol/openid-connect/token" \
--token $ANSIBLE_TOKEN_AUTH \
--token "$ANSIBLE_TOKEN_AUTH" \
--tls-validation false \
--url "https://cloud.redhat.com/api/automation-hub/" \
--requirements "collections:\n - testing.ansible_testing_content"
--requirements $'collections:\n - testing.ansible_testing_content'
6 changes: 3 additions & 3 deletions docs/_scripts/remote-collection.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
pulp ansible remote -t "collection" create \
--name "cbar" \
--url "https://galaxy-dev.ansible.com/" \
--requirements "collections:\n - testing.ansible_testing_content"
# If requirements are in a file instead
# you can use the option --requirements-file <file_name>
--requirements $'collections:\n - testing.ansible_testing_content'
# If requirements are in a file
# you can use the option '--requirements @<file_name>' instead.

0 comments on commit 83b53fd

Please sign in to comment.