Compare commits

...

3 Commits

Author SHA1 Message Date
Brain 75f008d062 Merge pull request 'Fix linting issues' (!7) from Brain/ki-ansible:patch-4 into main
Reviewed-on: #7
2023-12-04 22:10:05 +01:00
Brain 9c6732ba4b
Fix linting issues 2022-11-01 16:39:00 +01:00
Brain 62f58138e3
Fix linting issues 2022-05-10 15:25:20 +02:00
1 changed files with 5 additions and 5 deletions

View File

@ -3,18 +3,18 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
---
- name: be sure the ki config directory exists
- name: Be sure the ki config directory exists
become: true
file:
ansible.builtin.file:
path: /var/docker/ki
state: directory
owner: root
group: root
mode: "0755"
- name: be sure the ki files are in place
- name: Be sure the ki files are in place
become: true
template:
ansible.builtin.template:
src: "{{ item }}.j2"
dest: "/var/docker/ki/{{ item }}"
owner: root
@ -24,7 +24,7 @@
- config.js
- docker-compose.yml
- name: be sure the ki services are running
- name: Be sure the ki services are running
become: true
community.docker.docker_compose:
project_src: /var/docker/ki