2018-06-26 11:47:23 +02:00
|
|
|
# This is a dummy (example) module for a Python Job Module.
|
|
|
|
#
|
|
|
|
# The code is the documentation for the configuration file.
|
2014-08-05 18:18:57 +02:00
|
|
|
---
|
|
|
|
syntax: "YAML map of anything"
|
|
|
|
example:
|
|
|
|
whats_this: "module-specific configuration"
|
|
|
|
from_where: "dummypython.conf"
|
|
|
|
a_list:
|
|
|
|
- "item1"
|
|
|
|
- "item2"
|
|
|
|
- "item3"
|
|
|
|
- "item4"
|
|
|
|
a_list_of_maps:
|
|
|
|
- name: "an Item"
|
|
|
|
contents:
|
|
|
|
- "an element"
|
|
|
|
- "another element"
|
|
|
|
- name: "another item"
|
|
|
|
contents:
|
2018-06-26 11:47:23 +02:00
|
|
|
- "not much"
|