Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yujinlim/ansible-dogecoind
install dogecoind
https://github.com/yujinlim/ansible-dogecoind
Last synced: 15 days ago
JSON representation
install dogecoind
- Host: GitHub
- URL: https://github.com/yujinlim/ansible-dogecoind
- Owner: yujinlim
- Created: 2018-01-31T11:11:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-31T11:12:03.000Z (almost 7 years ago)
- Last Synced: 2024-11-07T18:03:58.555Z (2 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
dogecoind
=========Installation of dogecoind, only supports `debian` for now
Role Variables
--------------```yaml
---
dogecoind_name: dogecoinddogecoind_datadir: /root/.dogecoin
dogecoind_cache: 1024 # in MB, 1gb
dogecoind_maxconnections: 125dogecoind_testnet: false
dogecoind_port: 22556dogecoind_rpc: false
dogecoind_rpcbind: 0.0.0.0
dogecoind_rpcallowip: 0.0.0.0/0
dogecoind_rpckeepalive: 1
dogecoind_rpcthreads: 4
dogecoind_rpcport: 8332
dogecoind_rpc_username: username
dogecoind_rpc_password: password
```Example Playbook
----------------- hosts: servers
roles:
- { role: dogecoind }