summaryrefslogtreecommitdiffstats
path: root/test/unittests/scripts/inc1/main.yml
blob: 8c290d39e39f426893ad90bad430549383e762b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: 2.2
shortdesc: Include test script 1
longdesc: Test if includes work ok
parameters:
  - name: foo
    type: boolean
    shortdesc: An optional feature
  - name: bar
    type: string
    shortdesc: A string of characters
    value: the name is the game
  - name: is-required
    type: int
    required: true
actions:
  - call: ls /tmp
    when: foo
    shortdesc: ls
  - call: "echo '{{foo}}'"
    shortdesc: foo
  - call: "echo '{{bar}}'"
    shortdesc: bar