Skip to content

Commit 3903fa7

Browse files
authored
Merge pull request #19 from idealista/develop
Develop
2 parents b4e0f93 + 9b26859 commit 3903fa7

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!--
22
33
Have you read Idealista's Code of Conduct? By filling an Issue, you are expected to comply with it,
4-
including treating everyone with respect: https://github.com/idealista/idealista/blob/master/CODE_OF_CONDUCT.md
4+
including treating everyone with respect: https://github.com/idealista/fluentd-role/blob/master/CODE_OF_CONDUCT.md
55
66
-->
77

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch
44

55
## [Unreleased](https://github.com/idealista/fluentd-role/tree/develop)
66

7+
## [1.2.1](https://github.com/idealista/fluentd-role/tree/1.2.1)
8+
## [Full Changelog](https://github.com/idealista/fluentd-role/compare/1.2.0...1.2.1)
9+
### Fixed
10+
- *[#17](https://github.com/idealista/fluentd-role/issues/17) Fixing service kill* @dortegau
11+
12+
713
## [1.2.0](https://github.com/idealista/fluentd-role/tree/1.2.0)
814
## [Full Changelog](https://github.com/idealista/fluentd-role/compare/1.1.2...1.2.0)
915
## Added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://travis-ci.org/idealista/fluentd-role.svg?branch=master)](https://travis-ci.org/idealista/fluentd-role)
44
# Fluentd Ansible role
55

6-
This ansible role installs fluent agent in a debian environment.
6+
This ansible role installs fluent agent in a Debian environment.
77

88
- [Getting Started](#getting-started)
99
- [Prerequisities](#prerequisities)
@@ -18,7 +18,7 @@ This ansible role installs fluent agent in a debian environment.
1818

1919
## Getting Started
2020

21-
These instructions will get you a copy of the role for your ansible playbook. Once launched, it will install a [fluentd](https://fluentd.io/) agent.
21+
These instructions will get you a copy of the role for your Ansible playbook. Once launched, it will install a [fluentd](https://fluentd.io/) agent.
2222

2323
### Prerequisities
2424

@@ -81,9 +81,9 @@ See also the list of [contributors](https://github.com/idealista/fluentd-role/co
8181

8282
## License
8383

84-
![Apache 2.0 Licence](https://img.shields.io/hexpm/l/plug.svg)
84+
![Apache 2.0 License](https://img.shields.io/hexpm/l/plug.svg)
8585

86-
This project is licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license - see the [LICENSE.txt](LICENSE.txt) file for details.
86+
This project is licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license - see the [LICENSE](LICENSE) file for details.
8787

8888
## Contributing
8989

meta/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
galaxy_info:
3-
company: Idealista S.A.
3+
company: Idealista S.A.U
44
description: Fluentd is a data collector for unified logging layer.
55
min_ansible_version: 2.2.1.0
66
license: Apache 2.0

templates/fluentd/fluentd.service.j2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ User={{ fluentd_user }}
1111
Group={{ fluentd_group }}
1212

1313
ExecStart=/usr/local/bin/fluentd -d /run/fluentd/fluentd.pid -c {{ fluentd_conf_path }}/fluent.conf -o {{ fluentd_log_file }}
14-
ExecStop=/usr/bin/kill $MAINPID
14+
ExecStop=/bin/kill $MAINPID
1515
Restart=always
16+
KillSignal=SIGTERM
1617

1718
[Install]
18-
WantedBy=multi-user.target
19+
WantedBy=multi-user.target

0 commit comments

Comments
 (0)