4e699ce21b
* Fixed standard actions and workflows paths. If mistral is installed in system, 'resources' are not copied to dist-packages/mistral, so mistral-db-manage populate command won't work. Now resources are included in mistral. Closes-Bug: #1457842 Change-Id: I3149867e615acd188691b299a051e7458e2eb386
16 lines
270 B
YAML
16 lines
270 B
YAML
---
|
|
version: '2.0'
|
|
|
|
std.wait_ssh:
|
|
description: Simple SSH command.
|
|
base: std.ssh
|
|
base-input:
|
|
host: <% $.host %>
|
|
username: <% $.username %>
|
|
password: <% $.password %>
|
|
cmd: 'ls -l'
|
|
input:
|
|
- host
|
|
- username
|
|
- password
|