File tree Expand file tree Collapse file tree
mainnet-shadow-fork-7/inventory/group_vars Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ common_log_driver: json-file
141141# #############################################
142142beacon_container_name : beacon
143143validator_container_name : validator
144+ execution_container_name : execution
144145hi_peer_count : 100
145146separate_validator_process_enabled : true
146147
Original file line number Diff line number Diff line change 1313 register : stop_result
1414 failed_when : " (stop_result.rc >= 1) and not ('No such container' in stop_result.stderr)"
1515 - name : Stop geth client container
16- shell : " docker stop --time=10 {{eth1_client_name }}"
16+ shell : " docker stop --time=10 {{execution_container_name }}"
1717 register : stop_result
18- failed_when : " (stop_result.rc >= 1) and not ('No such container' in stop_result.stderr)"
18+ failed_when : " (stop_result.rc >= 1) and not ('No such container' in stop_result.stderr)"
Original file line number Diff line number Diff line change 55 tasks :
66 - name : Start execution node container
77 docker_container :
8- name : " {{ eth1_client_name }}"
8+ name : " {{ execution_container_name }}"
99 state : started
1010 image : " {{ eth1_image_name }}"
1111 pull : true
Original file line number Diff line number Diff line change 44 serial : 20
55 tasks :
66 - name : Stop execution node container
7- shell : " docker stop {{ eth1_client_name }}"
7+ shell : " docker stop {{ execution_container_name }}"
88 register : stop_result
99 failed_when : " (stop_result.rc >= 1) and not ('No such container' in stop_result.stderr)"
Original file line number Diff line number Diff line change 2323 path : " {{validator_node_dir}}"
2424 state : absent
2525 - name : Stop execution client container
26- shell : " docker stop {{eth1_client_name }}"
26+ shell : " docker stop {{execution_container_name }}"
2727 register : stop_result
2828 failed_when : " (stop_result.rc >= 1) and not ('No such container' in stop_result.stderr)"
2929 - name : Remove execution data
3434 - name : Remove testnet dir
3535 become : true
3636 when : (testnet_type == 'custom') or
37- (testnet_type == 'prater' and eth2_client_name == 'prysm')
37+ (testnet_type == 'prater' and eth2_client_name == 'prysm')
3838 file :
3939 path : " {{testnet_dir}}"
4040 state : absent
133133# - name: Delete the prometheus config
134134# file:
135135# path: /etc/default/prometheus
136- # state: absent
136+ # state: absent
You can’t perform that action at this time.
0 commit comments