Add vikunja integrations
Integrate into gethomepage and telegraf Fix force-recreate for vikunja and influxdb
This commit is contained in:
parent
146c80498b
commit
e0a6245842
5 changed files with 17 additions and 1 deletions
|
@ -17,6 +17,12 @@
|
|||
src: yml.j2
|
||||
dest: "{{ (service_path, 'influxdb.yml') | path_join }}"
|
||||
mode: "0600"
|
||||
register: cmd_result
|
||||
|
||||
- name: Set the docker force-recreate flag
|
||||
ansible.builtin.set_fact:
|
||||
docker_force_recreate: --force-recreate
|
||||
when: cmd_result.changed # noqa: no-handler We need to handle the restart per service. Handlers don't support variables.
|
||||
|
||||
- name: Import start tasks for common service
|
||||
ansible.builtin.import_tasks: tasks/start-common-service.yml
|
||||
|
|
Reference in a new issue