Skip to content

Commit

Permalink
chore: update penumbra playbook & polkachu version
Browse files Browse the repository at this point in the history
  • Loading branch information
Catopish committed Dec 24, 2024
1 parent 4b676c2 commit 28e50d5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion group_vars/penumbra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
penumbra_version: "0.81.0"
penumbra_chain_id: ""
cometbft_version: "0.37.14"
polkachu_version: "2665270"
polkachu_version: "2681688"

# dl locations
default_git_repo: "https://github.com/penumbra-zone/penumbra"
Expand Down
20 changes: 20 additions & 0 deletions roles/setup_install_penumbra/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,26 @@
state: absent
when: not cometbft_dir.stat.exists

- name: Download Polkachu's Penumbra address book
ansible.builtin.get_url:
url: "https://snapshots.polkachu.com/addrbook/penumbra/addrbook.json"
dest: "{{ default_database_path }}/node0/cometbft/config/addrbook.json"
mode: "0640"
owner: "{{ default_user }}"
group: "{{ default_user }}"
force: true
when: not cometbft_dir.stat.exists

- name: Download Polkachu's Penumbra genesis file
ansible.builtin.get_url:
url: "https://snapshots.polkachu.com/genesis/penumbra/genesis.json"
dest: "{{ default_database_path }}/node0/cometbft/config/genesis.json"
mode: "0640"
owner: "{{ default_user }}"
group: "{{ default_user }}"
force: true
when: not cometbft_dir.stat.exists

- name: Copy Cometbft & pd service templates
ansible.builtin.template:
src: "{{ item }}.service.j2"
Expand Down

0 comments on commit 28e50d5

Please sign in to comment.