14 lines
333 B
YAML
14 lines
333 B
YAML
---
|
|
- name: Deploy {{ svc.name }}
|
|
tags:
|
|
- webdis
|
|
block:
|
|
- import_tasks: steps/create-service-directory.yml
|
|
|
|
- name: Copy the config
|
|
ansible.builtin.copy:
|
|
src: webdis.json
|
|
dest: "{{ (service_path, 'webdis.json') | path_join }}"
|
|
mode: '0755'
|
|
|
|
- import_tasks: deploy-common-service.yml
|