diff options
Diffstat (limited to 'test/unittests/scripts/inc2')
-rw-r--r-- | test/unittests/scripts/inc2/main.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/unittests/scripts/inc2/main.yml b/test/unittests/scripts/inc2/main.yml new file mode 100644 index 0000000..4910696 --- /dev/null +++ b/test/unittests/scripts/inc2/main.yml @@ -0,0 +1,26 @@ +--- +- version: 2.2 + shortdesc: Includes another script + longdesc: This one includes another script + parameters: + - name: wiz + type: string + - name: foo + type: boolean + shortdesc: A different foo + include: + - script: inc1 + name: included-script + parameters: + - name: is-required + value: 33 + actions: + - call: "echo 'before {{wiz}}'" + shortdesc: before wiz + - include: included-script + - call: "echo 'after {{foo}}'" + shortdesc: after foo + - cib: | + {{included-script:is-required}} + - cib: | + {{wiz}} |