Fix issues reported by ansible-lint
This commit is contained in:
parent
a90840b1dc
commit
2e100d290f
59 changed files with 315 additions and 244 deletions
_ansible/roles/webdis/tasks
|
@ -3,12 +3,14 @@
|
|||
tags:
|
||||
- webdis
|
||||
block:
|
||||
- import_tasks: steps/create-service-directory.yml
|
||||
- name: Import prepare tasks for common service
|
||||
ansible.builtin.import_tasks: tasks/prepare-common-service.yml
|
||||
|
||||
- name: Copy the config
|
||||
ansible.builtin.copy:
|
||||
src: webdis.json
|
||||
dest: "{{ (service_path, 'webdis.json') | path_join }}"
|
||||
mode: '0755'
|
||||
mode: "0755"
|
||||
|
||||
- import_tasks: deploy-common-service.yml
|
||||
- name: Import start tasks for common service
|
||||
ansible.builtin.import_tasks: tasks/start-common-service.yml
|
||||
|
|
Reference in a new issue