Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ Fixed
Contributed by Hiroyasu OHYAMA (@userlocalhost).
* Fix a bug with user-scoped datastore values not working inside action-chain workflows. (bug fix)
#4634
* Added missing parameter types to ``linux.wait_for_ssh`` action metadata. (bug fix) #4611

2.10.4 - March 15, 2019
-----------------------
Expand Down
4 changes: 4 additions & 0 deletions contrib/linux/actions/wait_for_ssh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@
default: 22
username:
description: "Username used to authenticate."
type: "string"
required: true
default: "stanley"
password:
description: "Password used to authenticate."
type: "string"
required: false
keyfile:
description: "SSH key file used to authenticate."
type: "string"
required: false
ssh_timeout:
description: "SSH connection connect timeout (in seconds)."
Expand All @@ -40,3 +43,4 @@
# Note: timeout needs to be >= ((ssh_timeout + sleep_delay) * retries) so we override a
# default Python runner action timeout with a larger value
default: 400
type: "integer"