Tobias Reisinger
4104057771
roles/ and inventory/ are now in playbooks/ also fixed issues reported by ansible-lint
26 lines
961 B
YAML
26 lines
961 B
YAML
---
|
|
- name: Set common facts
|
|
ansible.builtin.import_tasks: tasks/set-default-facts.yml
|
|
|
|
- name: Deploy {{ role_name }}
|
|
vars:
|
|
svc: "{{ reitanlage_oranienburg_svc }}"
|
|
compose: "{{ reitanlage_oranienburg_compose }}"
|
|
block:
|
|
- name: Import prepare tasks for common service
|
|
ansible.builtin.import_tasks: tasks/prepare-common-service.yml
|
|
|
|
- name: Get the Dockerfile
|
|
ansible.builtin.get_url:
|
|
url: https://raw.githubusercontent.com/getgrav/docker-grav/master/Dockerfile
|
|
dest: "{{ (service_path, 'Dockerfile') | path_join }}"
|
|
mode: "0644"
|
|
register: cmd_result
|
|
|
|
- name: Set the docker rebuild flag
|
|
ansible.builtin.set_fact:
|
|
docker_rebuild: true
|
|
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
|