File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
1
+ - name : Ensure NHC configuration directory exists
2
+ ansible.builtin.file :
3
+ path : /etc/nhc
4
+ state : directory
5
+ owner : root
6
+ group : root
7
+ mode : u=rwX,go= # HealthCheckProgram is run by root
8
+
1
9
- name : Copy stored NHC configuration to active location
2
10
ansible.builtin.copy :
3
11
remote_src : true
4
12
src : " /var/tmp/cluster/hostconfig/{{ ansible_hostname }}/nhc.conf"
5
13
dest : /etc/nhc/nhc.conf
6
14
owner : root
7
15
group : root
8
- mode : u=rw,go= # HealthCheckProgram is run by root
16
+ mode : u=rw,go=
Original file line number Diff line number Diff line change 1
1
2
+ - name : Ensure NHC configuration directory exists
3
+ ansible.builtin.file :
4
+ path : /etc/nhc
5
+ state : directory
6
+ owner : root
7
+ group : root
8
+ mode : u=rwX,go= # HealthCheckProgram is run by root
9
+
2
10
- name : Template out NHC configuration
3
11
ansible.builtin.template :
4
12
src : " {{ nhc_config_template }}"
5
13
dest : /etc/nhc/nhc.conf
6
14
owner : root
7
15
group : root
8
- mode : u=rw,go= # HealthCheckProgram is run by root
16
+ mode : u=rw,go=
You can’t perform that action at this time.
0 commit comments