36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
---
|
|
- name: Set common facts
|
|
ansible.builtin.import_tasks: tasks/set-default-facts.yml
|
|
|
|
- name: Deploy {{ role_name }}
|
|
vars:
|
|
svc: "{{ deploy_svc }}"
|
|
compose: "{{ deploy_compose }}"
|
|
block:
|
|
- name: Import prepare tasks for common service
|
|
ansible.builtin.import_tasks: tasks/prepare-common-service.yml
|
|
|
|
- name: Set webhook config path
|
|
ansible.builtin.set_fact:
|
|
config_path: "{{ (service_path, 'config') | path_join }}"
|
|
|
|
- name: Create config directory
|
|
ansible.builtin.file:
|
|
path: "{{ config_path }}"
|
|
state: directory
|
|
mode: "0755"
|
|
|
|
- name: Create main config
|
|
ansible.builtin.copy:
|
|
dest: "{{ (config_path, 'hooks.yml') | path_join }}"
|
|
content: '{{ deploy_yml | to_nice_yaml }}'
|
|
mode: "0644"
|
|
|
|
- name: Copy the deploy-reitanlage_oranienburg script
|
|
ansible.builtin.copy:
|
|
src: deploy-reitanlage_oranienburg
|
|
dest: "{{ (config_path, 'deploy-reitanlage_oranienburg') | path_join }}"
|
|
mode: "0755"
|
|
|
|
- name: Import start tasks for common service
|
|
ansible.builtin.import_tasks: tasks/start-common-service.yml
|