File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed
support_config_update/tasks Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -141,4 +141,5 @@ Because this repo tries to accommodate as many Tendermint-based chains as possib
141141| Axelar | Some extra lines at the end of app.toml | Delete extra lines and adjust some settings these extra lines are supposed to change |
142142| Canto | genesis file needs to be unwrapped from .result.genesis | Unwrap genesis with jq command |
143143| Injective | Some extra lines at the end of app.toml | Delete extra lines and adjust some settings these extra lines are supposed to change |
144+ | Kichain | Some extra lines at the end of app.toml | Delete extra lines and adjust some settings these extra lines are supposed to change |
144145| Celestia testnet | inconsistent config.toml file variable naming convention | Manually adjust config.toml file |
Original file line number Diff line number Diff line change 5555 when : genesis_processing is defined and genesis_processing == "targz"
5656
5757- name : Set chain_id
58- command : " {{ user_dir }}/go/bin/{{ daemon }} config chain-id {{ chain_id }}"
59- ignore_errors : yes
58+ command : ' {{ user_dir }}/go/bin/{{ daemon }} config chain-id {{ chain_id }}'
59+ ignore_errors : true
6060
6161- name : Set local node
62- command : " {{ user_dir }}/go/bin/{{ daemon }} config node tcp://localhost:{{ custom_port_prefix }}57"
63- ignore_errors : yes
62+ command : ' {{ user_dir }}/go/bin/{{ daemon }} config node tcp://localhost:{{ custom_port_prefix }}57'
63+ ignore_errors : true
Original file line number Diff line number Diff line change 11---
2+ - name : register public ip
3+ uri :
4+ url : ' https://api.ipify.org?format=json'
5+ register : public_ip
6+
7+ - name : Set up external address
8+ lineinfile :
9+ path : ' {{ user_dir }}/{{ folder }}/config/config.toml'
10+ regexp : ' external_address = "'
11+ line : ' external_address = "{{ public_ip.json.ip }}:{{ custom_port_prefix }}56"'
12+ state : present
13+
214- name : Adjust config.toml port
315 lineinfile :
416 path : ' {{ user_dir }}/{{ folder }}/config/config.toml'
2840 become : true
2941 command : ' ufw allow {{ custom_port_prefix }}56/tcp'
3042
43+ - name : Set local node
44+ command : ' {{ user_dir }}/go/bin/{{ daemon }} config node tcp://localhost:{{ custom_port_prefix }}57'
45+ ignore_errors : true
46+
3147- name : start cosmovisor service
3248 become : true
3349 systemd :
You can’t perform that action at this time.
0 commit comments