From a082c79f1284e8235f5c17a8ff58e71b0e1df634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20P=C3=A9rez=20Garc=C3=ADa?= Date: Tue, 23 Feb 2021 13:31:02 +0100 Subject: [PATCH 1/3] resolve #60 change state value in Ensure skeleton log paths --- {{cookiecutter.app_name}}_role/tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}_role/tasks/install.yml b/{{cookiecutter.app_name}}_role/tasks/install.yml index 7f3b67e..47419a5 100644 --- a/{{cookiecutter.app_name}}_role/tasks/install.yml +++ b/{{cookiecutter.app_name}}_role/tasks/install.yml @@ -38,7 +38,7 @@ owner: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_user {% raw %}}}{% endraw %}" group: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_group {% raw %}}}{% endraw %}" {% endif %} - state: file + state: directory when: {{ cookiecutter.app_name }}_log_file is defined tags: - {{ cookiecutter.app_name }}_install From 2372221f939a03df4dd0db6e39c8571957ffed15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20P=C3=A9rez=20Garc=C3=ADa?= Date: Tue, 23 Feb 2021 16:37:10 +0100 Subject: [PATCH 2/3] update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69872e8..21cdba5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch ### Added ### Changed ### Fixed +- *[#60](https://github.com/idealista/cookiecutter-ansible-role/issues/60) [BUG] Wrong state option in "Ensure skeleton log paths" task* @emepege ### Removed ## [2.5.0](https://github.com/idealista/cookiecutter-ansible-role/tree/2.5.0) From bf38884dcd6a3e77c1d67361ffcbe6e048b34803 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Blanco=20L=C3=B3pez?= Date: Fri, 5 Mar 2021 13:31:24 +0100 Subject: [PATCH 3/3] #63 ignore html code in linguist detection --- CHANGELOG.md | 1 + .../{% raw %}.gitattributes{% endraw %} | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69872e8..531ce86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch ## Unreleased ### Added ### Changed +- *[#63](https://github.com/idealista/cookiecutter-ansible-role/issues/63) Ignore html in gitattributes file* @blalop ### Fixed ### Removed diff --git a/{{cookiecutter.app_name}}_role/{% raw %}.gitattributes{% endraw %} b/{{cookiecutter.app_name}}_role/{% raw %}.gitattributes{% endraw %} index aae6a25..d08e2bf 100644 --- a/{{cookiecutter.app_name}}_role/{% raw %}.gitattributes{% endraw %} +++ b/{{cookiecutter.app_name}}_role/{% raw %}.gitattributes{% endraw %} @@ -1,2 +1,3 @@ *.yml linguist-detectable=true *.yaml linguist-detectable=true +*.html linguist-detectable=false