-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaybook09.yaml
More file actions
45 lines (36 loc) · 1.19 KB
/
playbook09.yaml
File metadata and controls
45 lines (36 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
- name: Learning about tagging
hosts: futurama
vars:
cargo1: "prizes for a claw crane"
cargo2: "popcorn for popcorning enjoyment"
cargo3: "stickers for on a rubix cube"
vars_files:
- ~/vars/tagvars.yaml
gather_facts: yes
tasks:
- name: Make sure our directory exists
file:
path: ~/output/
state: directory
- name: Deploy orders to the crew
template:
src: ~/templates/orders.txt.j2
dest: ~/orders.txt
tags:
- orders
- crew
- name: Deploy the cargo manafest
template:
src: ~/templates/cargo_manafest.txt.j2
dest: ~/cargo_manafest.txt
tags:
- cargo
- shipprep
- name: Install nav charts
template:
src: ~/templates/navigation_charts.cfg.j2
dest: ~/navigation_charts.txt
tags:
- shipprep
- nav