deb-mistral/mistral/resources/actions/wait_ssh.yaml
Nikolay Mahotkin 4e699ce21b Fixing mistral resources path
* 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
2015-05-22 14:11:33 +03:00

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