You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
284 B

  1. ---
  2. # Outputs validator public keys from all the nodes to help you form genesis file
  3. - hosts: all
  4. vars:
  5. tendermint_home: /opt/tendermint
  6. tasks:
  7. - shell: cat "{{tendermint_home}}/priv_validator.json" | jq ".pub_key[1]"
  8. register: pk
  9. - debug: var=pk.stdout_lines