We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14fc6e5 commit af19168Copy full SHA for af19168
roles/dolos/tasks/main.yml
@@ -23,16 +23,17 @@
23
- name: Generate Dolos config
24
template:
25
dest: '{{ dolos_etc_container_dir }}/daemon.toml'
26
- src: daemon.toml.j2
+ src: 'daemon.toml.j2'
27
owner: '{{ cardano_node_user | string }}'
28
group: '{{ cardano_node_group | string }}'
29
mode: 0644
30
31
- name: Unarchive Dolos snapshot
32
- src: '{{ dolos_snapshot_url | string }}'
33
- dest: '{{ dolos_db_dir }}'
34
- remote_src: yes
35
- creates: '{{ dolos_db_dir }}/ledger'
+ ansible.builtin.unarchive:
+ src: '{{ dolos_snapshot_url | string }}'
+ dest: '{{ dolos_db_dir }}'
+ remote_src: yes
36
+ creates: '{{ dolos_db_dir }}/ledger'
37
when: dolos_snapshot_enabled
38
39
- name: Include docker-related tasks
0 commit comments