Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Makhonin committed Dec 13, 2023
1 parent 83320b5 commit 85a5f04
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion playbooks/agent_install_validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
roles:
- vars_shortcode_mapping
- solana_config
- solana_validator_stop
- name: solana_validator_stop
tags:
- solana.stop
when: not jito_validator|bool
- name: configure_ubuntu
tags:
- configure.os
Expand All @@ -23,6 +26,10 @@
- cli.install
- cli.update
when: jito_validator|bool
- name: solana_validator_stop
tags:
- solana.stop
when: jito_validator|bool
- name: solana_validator_bootstrap
tags:
- validator_bootstrap
Expand Down
2 changes: 1 addition & 1 deletion roles/solana_cli_jito/tasks/solana_snapshot_finder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: cli | get solana snapshot finder
copy:
src: files/solana-snapshot-finder
dest: "{{ env_path }}/solana-snapshot-finder"
dest: "{{ solana_home }}/solana-snapshot-finder"
owner: "{{ solana_user }}"
group: "{{ solana_user }}"
mode: 0755
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- name: run snapshot finder
become: yes
become_user: "{{ solana_user }}"
shell: "solana-snapshot-finder --snapshot-path {{ snapshots_path }} -r {{ cluster_rpc_address }}"
shell: "{{ solana_home }}/solana-snapshot-finder --snapshot-path {{ snapshots_path }} -r {{ cluster_rpc_address }}"
environment:
PATH: "{{ env_path }}"
ignore_errors: True
Expand Down

0 comments on commit 85a5f04

Please sign in to comment.