File tree 11 files changed +17
-16
lines changed
11 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 7
7
mode : " 0750"
8
8
9
9
- name : Set permissions
10
- ansible.builtin.shell : " chown -R 1000:1000 {{ arbitrum_node_datadir }}"
10
+ ansible.builtin.command : " chown -R 1000:1000 {{ arbitrum_node_datadir }}" # noqa deprecated-command-syntax
11
+ changed_when : false
11
12
12
13
- name : Run arbitrum_node container
13
14
community.docker.docker_container :
Original file line number Diff line number Diff line change 12
12
group : " {{ besu_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ besu_user }}:{{ besu_user }} {{ besu_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ besu_user }}:{{ besu_user }} {{ besu_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Run besu container
18
18
community.docker.docker_container :
Original file line number Diff line number Diff line change 12
12
group : " {{ erigon_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ erigon_user }}:{{ erigon_user }} {{ erigon_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ erigon_user }}:{{ erigon_user }} {{ erigon_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Init custom network
18
18
when : erigon_init_custom_network
Original file line number Diff line number Diff line change 12
12
group : " {{ ethereumjs_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ ethereumjs_user }}:{{ ethereumjs_user }} {{ ethereumjs_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ ethereumjs_user }}:{{ ethereumjs_user }} {{ ethereumjs_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Run ethereumjs container
18
18
community.docker.docker_container :
Original file line number Diff line number Diff line change 12
12
group : " {{ geth_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ geth_user }}:{{ geth_user }} {{ geth_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ geth_user }}:{{ geth_user }} {{ geth_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Init custom network
18
18
when : geth_init_custom_network
Original file line number Diff line number Diff line change 12
12
group : " {{ lighthouse_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ lighthouse_user }}:{{ lighthouse_user }} {{ lighthouse_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ lighthouse_user }}:{{ lighthouse_user }} {{ lighthouse_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Run lighthouse container
18
18
community.docker.docker_container :
42
42
when : lighthouse_validator_enabled
43
43
44
44
- name : Set permissions for validator data dir
45
- ansible.builtin.shell : " chown -R {{ lighthouse_user }}:{{ lighthouse_user }} {{ lighthouse_validator_datadir }}"
45
+ ansible.builtin.command : " chown -R {{ lighthouse_user }}:{{ lighthouse_user }} {{ lighthouse_validator_datadir }}" # noqa deprecated-command-syntax
46
46
when : lighthouse_validator_enabled
47
47
48
48
- name : Run lighthouse validator container
Original file line number Diff line number Diff line change 12
12
group : " {{ lodestar_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ lodestar_user }}:{{ lodestar_user }} {{ lodestar_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ lodestar_user }}:{{ lodestar_user }} {{ lodestar_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Run lodestar container
18
18
community.docker.docker_container :
42
42
when : lodestar_validator_enabled
43
43
44
44
- name : Set permissions for validator data dir
45
- ansible.builtin.shell : " chown -R {{ lodestar_user }}:{{ lodestar_user }} {{ lodestar_validator_datadir }}"
45
+ ansible.builtin.command : " chown -R {{ lodestar_user }}:{{ lodestar_user }} {{ lodestar_validator_datadir }}" # noqa deprecated-command-syntax
46
46
when : lodestar_validator_enabled
47
47
48
48
- name : Run lodestar validator container
Original file line number Diff line number Diff line change 15
15
- " {{ nethermind_datadir }}/nethermind"
16
16
17
17
- name : Set permissions
18
- ansible.builtin.shell : " chown -R {{ nethermind_user }}:{{ nethermind_user }} {{ nethermind_datadir }}"
18
+ ansible.builtin.command : " chown -R {{ nethermind_user }}:{{ nethermind_user }} {{ nethermind_datadir }}" # noqa deprecated-command-syntax
19
19
20
20
- name : Run nethermind container
21
21
community.docker.docker_container :
Original file line number Diff line number Diff line change 12
12
group : " {{ nimbus_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ nimbus_user }}:{{ nimbus_user }} {{ nimbus_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ nimbus_user }}:{{ nimbus_user }} {{ nimbus_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Create validator data dir
18
18
ansible.builtin.file :
28
28
when : nimbus_validator_enabled
29
29
30
30
- name : Set permissions for validator data dir
31
- ansible.builtin.shell : " chown -R {{ nimbus_user }}:{{ nimbus_user }} {{ nimbus_validator_datadir }}"
31
+ ansible.builtin.command : " chown -R {{ nimbus_user }}:{{ nimbus_user }} {{ nimbus_validator_datadir }}" # noqa deprecated-command-syntax
32
32
when : nimbus_validator_enabled
33
33
34
34
- name : Checkpoint sync nimbus node
Original file line number Diff line number Diff line change 12
12
group : " {{ prysm_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ prysm_user }}:{{ prysm_user }} {{ prysm_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ prysm_user }}:{{ prysm_user }} {{ prysm_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Run prysm container
18
18
community.docker.docker_container :
39
39
when : prysm_validator_enabled
40
40
41
41
- name : Set permissions for validator data dir
42
- ansible.builtin.shell : " chown -R {{ prysm_user }}:{{ prysm_user }} {{ prysm_validator_datadir }}"
42
+ ansible.builtin.command : " chown -R {{ prysm_user }}:{{ prysm_user }} {{ prysm_validator_datadir }}" # noqa deprecated-command-syntax
43
43
when : prysm_validator_enabled
44
44
45
45
- name : Run prysm validator container
Original file line number Diff line number Diff line change 12
12
group : " {{ teku_user }}"
13
13
14
14
- name : Set permissions
15
- ansible.builtin.shell : " chown -R {{ teku_user }}:{{ teku_user }} {{ teku_datadir }}"
15
+ ansible.builtin.command : " chown -R {{ teku_user }}:{{ teku_user }} {{ teku_datadir }}" # noqa deprecated-command-syntax
16
16
17
17
- name : Create validator data dir
18
18
ansible.builtin.file :
28
28
when : teku_validator_enabled
29
29
30
30
- name : Set permissions for validator data dir
31
- ansible.builtin.shell : " chown -R {{ teku_user }}:{{ teku_user }} {{ teku_validator_datadir }}"
31
+ ansible.builtin.command : " chown -R {{ teku_user }}:{{ teku_user }} {{ teku_validator_datadir }}" # noqa deprecated-command-syntax
32
32
when : teku_validator_enabled
33
33
34
34
- name : Run teku container
You can’t perform that action at this time.
0 commit comments