mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-12-22 22:11:58 +01:00
14 lines
428 B
YAML
14 lines
428 B
YAML
---
|
|
- name: Write config files
|
|
ansible.builtin.template:
|
|
src: templates/ghost-config/{{ ghost_setup_filename }}
|
|
dest: /mnt/data/{{ ghost_setup_site }}/config.production.json
|
|
mode: "0664"
|
|
notify:
|
|
- Restart service
|
|
- name: Ensure service is started
|
|
ansible.builtin.command:
|
|
cmd: ghost start
|
|
chdir: /mnt/data/{{ ghost_setup_site }}
|
|
register: start
|
|
changed_when: '"Starting Ghost" in start.stdout'
|