Skip to content

Commit ed17a2a

Browse files
authored
Merge pull request ethpandaops#72 from ethpandaops/bbusa/lintwarning
fix deprecated-command-syntax
2 parents 7efd283 + 04ee683 commit ed17a2a

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

Diff for: roles/arbitrum_node/tasks/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
mode: "0750"
88

99
- name: Set permissions
10-
ansible.builtin.command: "chown -R 1000:1000 {{ arbitrum_node_datadir }}" # noqa deprecated-command-syntax
10+
ansible.builtin.command: "chown -R 1000:1000 {{ arbitrum_node_datadir }}" # noqa no-free-form
1111
changed_when: false
1212

1313
- name: Run arbitrum_node container

Diff for: roles/besu/tasks/setup.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ besu_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ besu_user }}:{{ besu_user }} {{ besu_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ besu_user }}:{{ besu_user }} {{ besu_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Run besu container

Diff for: roles/erigon/tasks/setup.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ erigon_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ erigon_user }}:{{ erigon_user }} {{ erigon_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ erigon_user }}:{{ erigon_user }} {{ erigon_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Init custom network

Diff for: roles/ethereumjs/tasks/setup.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ ethereumjs_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ ethereumjs_user }}:{{ ethereumjs_user }} {{ ethereumjs_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ ethereumjs_user }}:{{ ethereumjs_user }} {{ ethereumjs_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Run ethereumjs container

Diff for: roles/geth/tasks/setup.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ geth_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ geth_user }}:{{ geth_user }} {{ geth_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ geth_user }}:{{ geth_user }} {{ geth_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Init custom network

Diff for: roles/lighthouse/tasks/setup.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ lighthouse_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ lighthouse_user }}:{{ lighthouse_user }} {{ lighthouse_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ lighthouse_user }}:{{ lighthouse_user }} {{ lighthouse_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Run lighthouse container
@@ -44,7 +44,7 @@
4444
when: lighthouse_validator_enabled
4545

4646
- name: Set permissions for validator data dir
47-
ansible.builtin.command: "chown -R {{ lighthouse_user }}:{{ lighthouse_user }} {{ lighthouse_validator_datadir }}" # noqa deprecated-command-syntax
47+
ansible.builtin.command: "chown -R {{ lighthouse_user }}:{{ lighthouse_user }} {{ lighthouse_validator_datadir }}" # noqa no-free-form
4848
changed_when: false
4949
when: lighthouse_validator_enabled
5050

Diff for: roles/lodestar/tasks/setup.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ lodestar_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ lodestar_user }}:{{ lodestar_user }} {{ lodestar_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ lodestar_user }}:{{ lodestar_user }} {{ lodestar_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Run lodestar container
@@ -44,7 +44,7 @@
4444
when: lodestar_validator_enabled
4545

4646
- name: Set permissions for validator data dir
47-
ansible.builtin.command: "chown -R {{ lodestar_user }}:{{ lodestar_user }} {{ lodestar_validator_datadir }}" # noqa deprecated-command-syntax
47+
ansible.builtin.command: "chown -R {{ lodestar_user }}:{{ lodestar_user }} {{ lodestar_validator_datadir }}" # noqa no-free-form
4848
changed_when: false
4949
when: lodestar_validator_enabled
5050

Diff for: roles/nethermind/tasks/setup.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- "{{ nethermind_datadir }}/nethermind"
1616

1717
- name: Set permissions
18-
ansible.builtin.command: "chown -R {{ nethermind_user }}:{{ nethermind_user }} {{ nethermind_datadir }}" # noqa deprecated-command-syntax
18+
ansible.builtin.command: "chown -R {{ nethermind_user }}:{{ nethermind_user }} {{ nethermind_datadir }}" # noqa no-free-form
1919
changed_when: false
2020

2121
- name: Run nethermind container

Diff for: roles/nimbus/tasks/setup.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ nimbus_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ nimbus_user }}:{{ nimbus_user }} {{ nimbus_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ nimbus_user }}:{{ nimbus_user }} {{ nimbus_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Create validator data dir
@@ -29,7 +29,7 @@
2929
when: nimbus_validator_enabled
3030

3131
- name: Set permissions for validator data dir
32-
ansible.builtin.command: "chown -R {{ nimbus_user }}:{{ nimbus_user }} {{ nimbus_validator_datadir }}" # noqa deprecated-command-syntax
32+
ansible.builtin.command: "chown -R {{ nimbus_user }}:{{ nimbus_user }} {{ nimbus_validator_datadir }}" # noqa no-free-form
3333
changed_when: false
3434
when: nimbus_validator_enabled
3535

Diff for: roles/prysm/tasks/setup.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ prysm_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ prysm_user }}:{{ prysm_user }} {{ prysm_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ prysm_user }}:{{ prysm_user }} {{ prysm_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Run prysm container
@@ -41,7 +41,7 @@
4141
when: prysm_validator_enabled
4242

4343
- name: Set permissions for validator data dir
44-
ansible.builtin.command: "chown -R {{ prysm_user }}:{{ prysm_user }} {{ prysm_validator_datadir }}" # noqa deprecated-command-syntax
44+
ansible.builtin.command: "chown -R {{ prysm_user }}:{{ prysm_user }} {{ prysm_validator_datadir }}" # noqa no-free-form
4545
changed_when: false
4646
when: prysm_validator_enabled
4747

Diff for: roles/teku/tasks/setup.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
group: "{{ teku_user }}"
1313

1414
- name: Set permissions
15-
ansible.builtin.command: "chown -R {{ teku_user }}:{{ teku_user }} {{ teku_datadir }}" # noqa deprecated-command-syntax
15+
ansible.builtin.command: "chown -R {{ teku_user }}:{{ teku_user }} {{ teku_datadir }}" # noqa no-free-form
1616
changed_when: false
1717

1818
- name: Create validator data dir
@@ -29,7 +29,7 @@
2929
when: teku_validator_enabled
3030

3131
- name: Set permissions for validator data dir
32-
ansible.builtin.command: "chown -R {{ teku_user }}:{{ teku_user }} {{ teku_validator_datadir }}" # noqa deprecated-command-syntax
32+
ansible.builtin.command: "chown -R {{ teku_user }}:{{ teku_user }} {{ teku_validator_datadir }}" # noqa no-free-form
3333
changed_when: false
3434
when: teku_validator_enabled
3535

0 commit comments

Comments
 (0)