Sha256: 13cfb903b7b029d9249d8ccbbab2a1a8994c1fabd3b3c3198c6e4bd29b588a36

Contents?: true

Size: 924 Bytes

Versions: 2

Compression:

Stored size: 924 Bytes

Contents

#
# This file is example of rundock scenario file based on yaml format.
#
# -------------------------------------------------------------------
# ###  scenario section  ###
# - node: <nodename>
#   <taskname>:
#     - <task detail>
#     - :
#   <taskname>:
#     - <task detail>
#     - :
# - node: <nodename>
#   :
# ---
# ###  host information section  ###
# <hostname>:
#   host: xxx.xxx.xxx.xxx
#   <other_attributes>:
#     :
# <hostname>:
#   :
# ---
# ###  task information section  ###
# <taskname>:
#   - "<actual command>"
#   - :
# <taskname>:
#   :
# -------------------------------------------------------------------
#

- node: 127.0.0.1
  command:
    - "hostname"
    - "uname -a"
- node: anyhost-01
  task:
    - echo_platform
    - echo_users
---
anyhost-01:
  host: 192.168.1.11
  ssh_opts:
    port: 22
    user: anyuser
---
echo_platform:
  - "hostname"
  - "uname -a"
echo_users:
  - "whoami"
  - "w"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rundock-0.2.0 scenario_sample.yml
rundock-0.1.0 scenario_sample.yml