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 # Documentation
grist_documentation_link: "https://www.laurivan.com" grist_documentation_link: "https://www.laurivan.com"

View File

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

View File

@ -20,4 +20,4 @@
ansible.builtin.file: ansible.builtin.file:
path: "{{ grist_config_path | expanduser | realpath }}/docker-compose.yml" path: "{{ grist_config_path | expanduser | realpath }}/docker-compose.yml"
state: absent 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" - name: "GRIST | Write configuration files"
ansible.builtin.template: ansible.builtin.template:
src: "{{ item }}.j2" src: "{{ item }}.j2"
dest: "{{ grist_config_path | expanduser | realpath }}/{{ item }}" dest: "{{ grist_config_path | expanduser | realpath }}/{{ item }}"
mode: '0640' mode: '0640'
loop: loop:
- "docker-compose.yml" - "docker-compose.yml"
- "env.grist.conf" - "env.grist.conf"
tags: tags:
- grist_configure - grist_configure

View File

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