Skip to content

Commit f3ade6f

Browse files
committed
chore(examples/config/include_file): Add example of include_plays_before,include_plays_after with file source
1 parent 3223927 commit f3ade6f

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
meta:
2+
schema_version: 3
3+
hosts:
4+
localhost:
5+
- ssh_target: 127.0.0.1
6+
include_plays_before:
7+
- source: plays.before.yml
8+
include_plays_after:
9+
- source: plays.after.yml
10+
plays:
11+
- name: This Gobblefile
12+
hosts: [localhost]
13+
tasks:
14+
- name: This Gobblefile
15+
print:
16+
template: This Gobble
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- name: Plays After
2+
hosts: [localhost]
3+
tasks:
4+
- name: Plays After
5+
print:
6+
template: Plays After
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- name: Plays Before
2+
hosts: [localhost]
3+
tasks:
4+
- name: Plays Before
5+
print:
6+
template: Plays Before

0 commit comments

Comments
 (0)