112 lines
2.9 KiB
YAML
112 lines
2.9 KiB
YAML
---
|
|
- name: Geth | Create container directories
|
|
file:
|
|
path: '{{ item }}'
|
|
owner: dockremap
|
|
group: docker
|
|
state: directory
|
|
with_items:
|
|
- '{{ geth_cont_vol }}/data'
|
|
- '{{ geth_cont_vol }}/keys'
|
|
|
|
- name: Geth | Check if account file exists
|
|
stat:
|
|
path: '{{ geth_account_json_file }}'
|
|
register: account_file
|
|
when: geth_account_json is not defined
|
|
|
|
- name: Geth | Create password file
|
|
copy:
|
|
dest: '{{ geth_account_pass_file }}'
|
|
content: '{{ geth_account_pass | mandatory }}'
|
|
owner: dockremap
|
|
group: docker
|
|
mode: 0600
|
|
|
|
- name: Geth | Write account JSON
|
|
copy:
|
|
dest: '{{ geth_account_json_file }}'
|
|
content: '{{ geth_account_json | mandatory }}'
|
|
owner: dockremap
|
|
group: docker
|
|
mode: 0640
|
|
when: >
|
|
geth_account_json is defined and
|
|
geth_account_json != ""
|
|
|
|
- name: Geth | Generate account
|
|
when: >
|
|
geth_account_json is not defined and
|
|
geth_account_addr is not defined and
|
|
not account_file.stat.exists
|
|
block:
|
|
- name: Geth | Generate account JSON
|
|
docker_container:
|
|
name: '{{ geth_cont_name }}'
|
|
image: '{{ geth_cont_image }}'
|
|
detach: false
|
|
pull: true
|
|
auto_remove: yes
|
|
command: |
|
|
account new
|
|
--keystore=/keys
|
|
--password=/keys/account.pass
|
|
volumes:
|
|
- '{{ geth_cont_vol }}/keys:/keys:rw'
|
|
|
|
- name: Geth | Delay finding account file
|
|
wait_for:
|
|
timeout: 2
|
|
|
|
- name: Geth | Find newly generate account file
|
|
find:
|
|
paths: '{{ geth_cont_vol }}/keys'
|
|
patterns: 'UTC*'
|
|
file_type: file
|
|
register: found_account_files
|
|
|
|
- name: Geth | Symlink generated account file
|
|
file:
|
|
src: '{{ found_account_files.files[0].path }}'
|
|
dest: '{{ geth_account_json_file }}'
|
|
owner: dockremap
|
|
group: docker
|
|
state: link
|
|
|
|
- name: Geth | Read account address
|
|
slurp:
|
|
src: '{{ geth_account_json_file }}'
|
|
when: geth_account_json is not defined
|
|
register: geth_account
|
|
|
|
- name: Geth | Extract account JSON
|
|
set_fact:
|
|
geth_account_json: '{{ (geth_account.content | b64decode | from_json) }}'
|
|
when: geth_account_json is not defined
|
|
|
|
- name: Geth | Extract account address
|
|
set_fact:
|
|
geth_account_addr: '{{ geth_account_json["address"] }}'
|
|
when: geth_account_addr is not defined
|
|
|
|
- name: Geth | Verify account data is available
|
|
assert:
|
|
that:
|
|
- geth_account_json is defined
|
|
- geth_account_addr is defined
|
|
|
|
- name: Geth | Save account address to file
|
|
copy:
|
|
dest: '{{ geth_account_addr_file }}'
|
|
content: '{{ geth_account_addr | mandatory }}'
|
|
owner: 'dockremap'
|
|
group: 'docker'
|
|
|
|
- name: Geth | Create JWT secret file
|
|
when: geth_authrpc_jwtsecret is defined
|
|
copy:
|
|
dest: '{{ geth_authrpc_jwtsecret_file }}'
|
|
content: '{{ geth_authrpc_jwtsecret | mandatory }}'
|
|
owner: 'dockremap'
|
|
group: 'docker'
|