File tree 4 files changed +29
-0
lines changed
4 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 6
6
- ' {{ ansible_os_family }}_{{ ansible_distribution_major_version }}.yml'
7
7
- ' {{ ansible_os_family }}.yml'
8
8
9
+ - name : Update apt cache.
10
+ ansible.builtin.apt :
11
+ update_cache : yes
12
+ cache_valid_time : 600
13
+ changed_when : false
14
+ when : ansible_os_family == 'Debian'
15
+
9
16
- name : Prepare for whole stack roles if used
10
17
when :
11
18
- elasticstack_full_stack | bool
Original file line number Diff line number Diff line change 1
1
---
2
+
3
+ - name : Update apt cache.
4
+ ansible.builtin.apt :
5
+ update_cache : yes
6
+ cache_valid_time : 600
7
+ changed_when : false
8
+ when : ansible_os_family == 'Debian'
9
+
2
10
- name : Check-set-parameters
3
11
ansible.builtin.include_tasks : elasticsearch-parameters.yml
4
12
Original file line number Diff line number Diff line change 1
1
---
2
2
3
+ - name : Update apt cache.
4
+ ansible.builtin.apt :
5
+ update_cache : yes
6
+ cache_valid_time : 600
7
+ changed_when : false
8
+ when : ansible_os_family == 'Debian'
9
+
3
10
- name : Include OS specific vars
4
11
ansible.builtin.include_vars : ' {{ item }}'
5
12
with_first_found :
Original file line number Diff line number Diff line change 1
1
---
2
2
3
+ - name : Update apt cache.
4
+ ansible.builtin.apt :
5
+ update_cache : yes
6
+ cache_valid_time : 600
7
+ changed_when : false
8
+ when : ansible_os_family == 'Debian'
9
+
3
10
- name : Include OS specific vars
4
11
ansible.builtin.include_vars : ' {{ item }}'
5
12
with_first_found :
You can’t perform that action at this time.
0 commit comments