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

---
###
### Tendermint installation
###
## This file shows and sets the global defaults for the role variables.
## tendermint_release_install indicates if the install-tendermint role should install a release version or a private build of the tendermint app
##
#tendermint_release_install: true
## tendermint_download stores the link to the specific tendermint release to install
##
#tendermint_download: "https://s3-us-west-2.amazonaws.com/tendermint/binaries/tendermint/v0.10.0/tendermint_0.10.0_linux_amd64.zip"
## tendermint_binary stores the path to a private tendermint binary to install
##
#tendermint_binary: "{{ lookup('env','GOPATH') | default('') }}/bin/tendermint"
## Details of the linux user the tendermint app uses
##
#tendermint_user: tendermint
#tendermint_group: tendermint
#tendermint_home: /etc/tendermint
## tendermint_log_file stores the path to the tendermint application log
##
#tendermint_log_file: /var/log/tendermint.log
## tendermint_genesis_file contains the path and filename to a previously generated genesis.json. If undefined, the json file is dynamically generated.
##
#tendermint_genesis_file: "<undefined>"
###
### Basecoin installation
###
## basecoin_release_install indicates if the install-basecoin role should install a release version or a private build of the basecoin app
##
#basecoin_release_install: true
## basecoin_download stores the link to the specific basecoin release to install
##
#basecoin_download: "https://s3-us-west-2.amazonaws.com/tendermint/binaries/basecoin/v0.5.2/basecoin_0.5.2_linux_amd64.zip"
## basecoin_binary stores the path to a private basecoin binary to install
##
#basecoin_binary: "{{ lookup('env','GOPATH') | default('') }}/bin/basecoin"
## Details of the linux user the basecoin app uses
##
#basecoin_user: tendermint
#basecoin_group: tendermint
#basecoin_home: /etc/tendermint
## basecoin_log_file stores the path to the basecoin application log
##
#basecoin_log_file: /var/log/basecoin.log
###
### Development settings
###
## Used by the config role to find seed IPs and public keys and set the chain_id in genesis.json and config.toml
##
#testnet_name: testnet1
## 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.
#app_options_file: "app_options_files/dev_money"