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.

70 lines
2.3 KiB

  1. ---
  2. ###
  3. ### Tendermint installation
  4. ###
  5. ## This file shows and sets the global defaults for the role variables.
  6. ## tendermint_release_install indicates if the install-tendermint role should install a release version or a private build of the tendermint app
  7. ##
  8. #tendermint_release_install: true
  9. ## tendermint_download stores the link to the specific tendermint release to install
  10. ##
  11. #tendermint_download: "https://s3-us-west-2.amazonaws.com/tendermint/binaries/tendermint/v0.10.0/tendermint_0.10.0_linux_amd64.zip"
  12. ## tendermint_binary stores the path to a private tendermint binary to install
  13. ##
  14. #tendermint_binary: "{{ lookup('env','GOPATH') | default('') }}/bin/tendermint"
  15. ## Details of the linux user the tendermint app uses
  16. ##
  17. #tendermint_user: tendermint
  18. #tendermint_group: tendermint
  19. #tendermint_home: /etc/tendermint
  20. ## tendermint_log_file stores the path to the tendermint application log
  21. ##
  22. #tendermint_log_file: /var/log/tendermint.log
  23. ## tendermint_genesis_file contains the path and filename to a previously generated genesis.json. If undefined, the json file is dynamically generated.
  24. ##
  25. #tendermint_genesis_file: "<undefined>"
  26. ###
  27. ### Basecoin installation
  28. ###
  29. ## basecoin_release_install indicates if the install-basecoin role should install a release version or a private build of the basecoin app
  30. ##
  31. #basecoin_release_install: true
  32. ## basecoin_download stores the link to the specific basecoin release to install
  33. ##
  34. #basecoin_download: "https://s3-us-west-2.amazonaws.com/tendermint/binaries/basecoin/v0.5.2/basecoin_0.5.2_linux_amd64.zip"
  35. ## basecoin_binary stores the path to a private basecoin binary to install
  36. ##
  37. #basecoin_binary: "{{ lookup('env','GOPATH') | default('') }}/bin/basecoin"
  38. ## Details of the linux user the basecoin app uses
  39. ##
  40. #basecoin_user: tendermint
  41. #basecoin_group: tendermint
  42. #basecoin_home: /etc/tendermint
  43. ## basecoin_log_file stores the path to the basecoin application log
  44. ##
  45. #basecoin_log_file: /var/log/basecoin.log
  46. ###
  47. ### Development settings
  48. ###
  49. ## Used by the config role to find seed IPs and public keys and set the chain_id in genesis.json and config.toml
  50. ##
  51. #testnet_name: testnet1
  52. ## app_options_file contains a path and filename which will be included in a generated genesis.json file on all nodes. The content will be dumped into the app_options dictionary.
  53. #app_options_file: "app_options_files/dev_money"