chore: Lint

This commit is contained in:
Laur Ivan 2023-04-17 22:12:44 +02:00
parent c9df105fd1
commit e20785dfea
5 changed files with 5 additions and 8 deletions

View File

@ -25,5 +25,3 @@ grist_skeleton_paths:
# Documentation
grist_documentation_link: "https://www.laurivan.com"

View File

@ -3,7 +3,7 @@
galaxy_info:
author: Laur Ivan (laur.ivan@gmail.com)
namespace: laurivan
company:
company: ""
role_name: grist
description: Grist Role
min_ansible_version: "2.4"

View File

@ -20,4 +20,4 @@
ansible.builtin.file:
path: "{{ grist_config_path | expanduser | realpath }}/docker-compose.yml"
state: absent
when: docker_compose_file.stat.exists
when: docker_compose_file.stat.exists

View File

@ -15,11 +15,10 @@
- name: "GRIST | Write configuration files"
ansible.builtin.template:
src: "{{ item }}.j2"
dest: "{{ grist_config_path | expanduser | realpath }}/{{ item }}"
dest: "{{ grist_config_path | expanduser | realpath }}/{{ item }}"
mode: '0640'
loop:
- "docker-compose.yml"
- "env.grist.conf"
tags:
- grist_configure

View File

@ -1,11 +1,11 @@
---
- name: "GRIST | Configure"
import_tasks: config.yml
ansible.builtin.import_tasks: config.yml
tags:
- grist_configure
- name: "GRIST | Install"
import_tasks: install.yml
ansible.builtin.import_tasks: install.yml
tags:
- grist_install