Sha256: 8513ad421391995fd513f0c1c922a47e7e5d035fda77ba5740f0660cb8c16a9d

Contents?: true

Size: 1.08 KB

Versions: 10

Compression:

Stored size: 1.08 KB

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
  command:
    - errexit: true
    - "rm /tmp/riskyfile"
    - errexit: false
    - "rm /tmp/safetyfile"
    - "ls -1 /tmp"
---
anyhost-01:
  host: 192.168.1.11
  ssh_opts:
    port: 22
    user: anyuser
anyhost-02:
  host: 192.168.1.12
---
echo_platform:
  command:
    - "hostname"
    - "uname -a"
echo_users:
  command:
    - "whoami"
    - "w"

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rundock-0.3.0 scenario_sample.yml
rundock-0.2.11 scenario_sample.yml
rundock-0.2.10 scenario_sample.yml
rundock-0.2.9 scenario_sample.yml
rundock-0.2.8 scenario_sample.yml
rundock-0.2.7 scenario_sample.yml
rundock-0.2.6 scenario_sample.yml
rundock-0.2.5 scenario_sample.yml
rundock-0.2.4 scenario_sample.yml
rundock-0.2.3 scenario_sample.yml