9 Commits
2.6.0 ... 2.7.0

Author SHA1 Message Date
Marcos Pérez García
f33225106e Merge pull request #78 from idealista/develop
Release 2.7.0
2021-06-16 09:33:58 +02:00
Marcos Pérez García
665d89beb0 update CHANGELOG.md 2021-06-16 08:58:06 +02:00
Marcos Pérez García
4459ae1aa6 Merge pull request #77 from idealista/features/76
Create shell user variable
2021-06-16 08:51:30 +02:00
Marcos Pérez García
28fe4678d7 resolve #76 create shell user variable 2021-06-14 17:21:16 +02:00
Alex Blanco
57633e39ad Merge pull request #75 from idealista/develop
Release 2.6.1
2021-06-02 15:36:00 +02:00
Alex Blanco
668d890ce6 Update CHANGELOG.md 2021-06-02 12:31:55 +02:00
Alex Blanco
71711119ea Merge branch 'master' into develop 2021-06-02 12:31:19 +02:00
Alex Blanco
cdb741f701 Merge pull request #74 from idealista/bugs/73
#73 --- in the .yml files
2021-06-02 12:30:16 +02:00
Alejandro Blanco López
fb3253da25 #73 --- in the .yml files 2021-06-02 11:16:39 +02:00
9 changed files with 18 additions and 3 deletions

View File

@@ -1 +1,2 @@
---
blank_issues_enabled: false

View File

@@ -1,3 +1,4 @@
---
# Set to true to add reviewers to pull requests
addReviewers: true

1
.github/stale.yml vendored
View File

@@ -1,3 +1,4 @@
---
issues:
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 90

View File

@@ -1,7 +1,7 @@
---
dist: xenial
language: python
python: "3.7"
python: "3.9"
os: linux
services:
- docker

View File

@@ -3,7 +3,15 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a changelog](https://github.com/olivierlacan/keep-a-changelog).
## Unreleased
## [2.7.0](https://github.com/idealista/cookiecutter-ansible-role/tree/2.7.0)
### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.6.1...2.7.0)
### Added
- *[#76](https://github.com/idealista/cookiecutter-ansible-role/issues/76) Create shell user variable* @emepege
## [2.6.1](https://github.com/idealista/cookiecutter-ansible-role/tree/2.6.1)
### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.6.0...2.6.1)
### Changed
- *[#73](https://github.com/idealista/cookiecutter-ansible-role/issues/73) Add document start to .yml files* @blalop
## [2.6.0](https://github.com/idealista/cookiecutter-ansible-role/tree/2.6.0)
### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.5.1...2.6.0)

View File

@@ -1 +1,3 @@
---
blank_issues_enabled: false

View File

@@ -1,3 +1,4 @@
---
issues:
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 90

View File

@@ -21,7 +21,7 @@
# Installation path
{{ cookiecutter.app_name }}_root_path: /opt/{{ cookiecutter.app_name }}
{{ cookiecutter.app_name }}_bin_path: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_root_path {% raw %}}}{% endraw %}/bin"
{{ cookiecutter.app_name }}_skeleton_paths:
{{ cookiecutter.app_name }}_skeleton_paths:
- "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_bin_path {% raw %}}}{% endraw %}"
{{ cookiecutter.app_name }}_exec_name: {{ cookiecutter.exec_name }}
{% if cookiecutter.has_service == 'True' %}
@@ -32,6 +32,7 @@
# Owner
{{ cookiecutter.app_name }}_user: exampleuser
{{ cookiecutter.app_name }}_group: examplegroup
{{ cookiecutter.app_name }}_user_shell: /usr/sbin/nologin
# Maximum number of files limit
{{ cookiecutter.app_name }}_max_files: 32768

View File

@@ -13,7 +13,7 @@
name: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_user {% raw %}}}{% endraw %}"
group: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_group {% raw %}}}{% endraw %}"
system: yes
shell: /usr/sbin/nologin
shell: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_user_shell {% raw %}}}{% endraw %}"
createhome: no
tags:
- {{ cookiecutter.app_name }}_install