File tree 3 files changed +31
-7
lines changed
3 files changed +31
-7
lines changed Original file line number Diff line number Diff line change 48
48
when : activemq_network_check_enabled
49
49
50
50
- name : Create user and roles
51
- ansible.builtin.include_tasks : user_roles.yml
51
+ ansible.builtin.include_tasks :
52
+ file : user_roles.yml
53
+ apply :
54
+ tags :
55
+ - users
52
56
when : activemq_users | length > 0
53
57
tags :
54
58
- users
Original file line number Diff line number Diff line change 49
49
delegate_to : localhost
50
50
51
51
- name : Include firewall config tasks
52
- ansible.builtin.include_tasks : firewalld.yml
52
+ ansible.builtin.include_tasks :
53
+ file : firewalld.yml
54
+ apply :
55
+ tags :
56
+ - firewall
53
57
when : activemq_configure_firewalld
54
58
tags :
55
59
- firewall
56
60
57
61
- name : Include install tasks
58
- ansible.builtin.include_tasks : install.yml
62
+ ansible.builtin.include_tasks :
63
+ file : install.yml
64
+ apply :
65
+ tags :
66
+ - install
59
67
tags :
60
68
- install
61
69
62
70
- name : Include systemd tasks
63
- ansible.builtin.include_tasks : systemd.yml
71
+ ansible.builtin.include_tasks :
72
+ file : systemd.yml
73
+ apply :
74
+ tags :
75
+ - systemd
64
76
tags :
65
77
- systemd
66
78
Original file line number Diff line number Diff line change 1
1
---
2
- - name : Include systemd tasks
3
- ansible.builtin.include_tasks : systemd.yml
2
+ - name : Include install tasks
3
+ ansible.builtin.include_tasks :
4
+ file : systemd.yml
5
+ apply :
6
+ tags :
7
+ - systemd
4
8
tags :
5
9
- systemd
6
10
7
11
- name : Include uninstall tasks
8
- ansible.builtin.include_tasks : uninstall.yml
12
+ ansible.builtin.include_tasks :
13
+ file : uninstall.yml
14
+ apply :
15
+ tags :
16
+ - uninstall
9
17
tags :
10
18
- uninstall
You can’t perform that action at this time.
0 commit comments