-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp_template.yml
101 lines (83 loc) · 2.24 KB
/
p_template.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
################################################
# name: p_<playbook>.yml
#
# function:
# - <desc>
# - <desc>
# - <desc>
#
# dev: <developer>
# mail: <developer mail>
#
# rel: <release>
# changelog:
# - <changes>
################################################
---
- name: "<do anything at> {{ ansible_play_hosts|to_yaml }}"
hosts: "{{ group_name | default('none') }}"
collections:
- linux.common
- <collection>
- <collection>
gather_facts: false
any_errors_fatal: true
ignore_unreachable: false
debugger: <on_failed|on_skipped|never>
become: true
vars:
pl_name: "p_<playbook>.yml"
##############################################
pre_tasks:
- block:
- name: "role check availibility"
include_role:
name: r_check_availability
- name: "role check node os"
ansible.builtin.include_role:
name: r_check_os
- name: "role create local facts"
ansible.builtin.include_role:
name: r_create_local_facts
- name: "<role info>"
ansible.builtin.include_role:
name: r_<role>
rescue:
- name: "pre task {{ pl_name }} failed"
ansible.builtin.fail:
msg: "<fail message>"
tags:
- always
##############################################
tasks:
- block:
- name: "<role info>"
ansible.builtin.include_role:
name: r_<role>
tags:
- <tagname = rolename>
- name: "<role info>"
ansible.builtin.include_role:
name: r_<role>
tags:
- <tagname = rolename>
rescue:
- name: "task {{ pl_name }} failed"
ansible.builtin.fail:
msg: "<fail message>"
##############################################
post_tasks:
- block:
- name: "role write local state facts"
ansible.builtin.include_role:
name: r_write_local_state_facts
- name: "<role info>"
ansible.builtin.include_role:
name: r_<role>
rescue:
- name: "post task {{ pl_name }} failed"
ansible.builtin.fail:
msg: "<fail message>"
tags:
- always
##############################################