From 5c160d6bbe5c796805ae58f575b565ca15115881 Mon Sep 17 00:00:00 2001 From: Dan Clough Date: Mon, 23 Oct 2023 01:26:21 -0500 Subject: [PATCH 1/5] Change Debian repo location (#179) Changing the Debian repo to use "stable/main" instead of release-specific repos, per InfluxDB team suggestion --- tasks/Debian.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/tasks/Debian.yml b/tasks/Debian.yml index 57ebfa4..e323f64 100644 --- a/tasks/Debian.yml +++ b/tasks/Debian.yml @@ -80,21 +80,11 @@ set_fact: telegraf_repository_params: "[signed-by=/usr/share/keyrings/influxdata-archive.asc]" - - name: "Debian | Add Telegraf repository (using LSB)" - copy: - content: "deb {{ telegraf_repository_params | default('') }} https://repos.influxdata.com/{{ ansible_distribution|lower }} {{ ansible_lsb.codename }} stable" - dest: /etc/apt/sources.list.d/telegraf.list - when: - - ansible_lsb is defined - - ansible_lsb.codename is defined - - name: "Debian | Add Telegraf repository" copy: - content: "deb {{ telegraf_repository_params | default('') }} https://repos.influxdata.com/{{ ansible_distribution|lower }} {{ ansible_distribution_release }} stable" + content: "deb {{ telegraf_repository_params | default('') }} https://repos.influxdata.com/{{ ansible_distribution|lower }} stable main" dest: /etc/apt/sources.list.d/telegraf.list - become: true - when: - - ansible_lsb is not defined or ansible_lsb.codename is not defined + become: yes - name: "Debian | Install Telegraf package (repo)" apt: From d5ab4b07a80c0bb7d67ef940bde25a7385258192 Mon Sep 17 00:00:00 2001 From: "Werner Dijkerman [GH bot]" Date: Mon, 23 Oct 2023 06:26:59 +0000 Subject: [PATCH 2/5] Updated CHANGELOG.md on "2023-10-23 06:26:59" --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60ec710..cfcfbd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ **Merged pull requests:** +- Change Debian repo location [\#179](https://github.com/dj-wasabi/ansible-telegraf/pull/179) ([danclough](https://github.com/danclough)) - replace depracted aws module [\#178](https://github.com/dj-wasabi/ansible-telegraf/pull/178) ([ThorstenHeck](https://github.com/ThorstenHeck)) - added yaml 1.2.2 compatibility [\#176](https://github.com/dj-wasabi/ansible-telegraf/pull/176) ([DEvil0000](https://github.com/DEvil0000)) - Migrate from io to diskio to fix deprecation warning [\#173](https://github.com/dj-wasabi/ansible-telegraf/pull/173) ([mprasil](https://github.com/mprasil)) From d84931411ee65205fcff5d2c42c29b6d523dc9b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:33:03 +0100 Subject: [PATCH 3/5] Bump ansible from 8.2.0 to 8.5.0 (#181) Bumps [ansible](https://github.com/ansible-community/ansible-build-data) from 8.2.0 to 8.5.0. - [Changelog](https://github.com/ansible-community/ansible-build-data/blob/main/docs/release-process.md) - [Commits](https://github.com/ansible-community/ansible-build-data/compare/8.2.0...8.5.0) --- updated-dependencies: - dependency-name: ansible dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d2fbfaf..15c3eac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ansible==8.2.0 +ansible==8.5.0 ansible-compat==4.1.7 ansible-core==2.15.2 docker==6.1.3 From 06117f38a1ffc82b740a573013db80c89f169c4b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:33:17 +0100 Subject: [PATCH 4/5] Bump ansible-core from 2.15.2 to 2.15.9 (#182) Bumps [ansible-core](https://github.com/ansible/ansible) from 2.15.2 to 2.15.9. - [Release notes](https://github.com/ansible/ansible/releases) - [Commits](https://github.com/ansible/ansible/compare/v2.15.2...v2.15.9) --- updated-dependencies: - dependency-name: ansible-core dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 15c3eac..46db780 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ ansible==8.5.0 ansible-compat==4.1.7 -ansible-core==2.15.2 +ansible-core==2.15.9 docker==6.1.3 molecule==6.0.1 molecule-docker==2.1.0 From 171ecb0434774e0945b444412eb0757c5f7defe5 Mon Sep 17 00:00:00 2001 From: "Werner Dijkerman [GH bot]" Date: Sat, 17 Feb 2024 11:33:43 +0000 Subject: [PATCH 5/5] Updated CHANGELOG.md on "2024-02-17 11:33:43" --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfcfbd7..9dc6410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ **Merged pull requests:** +- Bump ansible-core from 2.15.2 to 2.15.9 [\#182](https://github.com/dj-wasabi/ansible-telegraf/pull/182) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Bump ansible from 8.2.0 to 8.5.0 [\#181](https://github.com/dj-wasabi/ansible-telegraf/pull/181) ([dependabot[bot]](https://github.com/apps/dependabot)) - Change Debian repo location [\#179](https://github.com/dj-wasabi/ansible-telegraf/pull/179) ([danclough](https://github.com/danclough)) - replace depracted aws module [\#178](https://github.com/dj-wasabi/ansible-telegraf/pull/178) ([ThorstenHeck](https://github.com/ThorstenHeck)) - added yaml 1.2.2 compatibility [\#176](https://github.com/dj-wasabi/ansible-telegraf/pull/176) ([DEvil0000](https://github.com/DEvil0000))