From c79f497a0915a7b740452963ca20acc551c52600 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Mon, 6 Sep 2021 13:37:18 +0200 Subject: [PATCH] influxdb: use proper repo --- roles/influxdb/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/influxdb/tasks/main.yml b/roles/influxdb/tasks/main.yml index 011bcab..8814d78 100644 --- a/roles/influxdb/tasks/main.yml +++ b/roles/influxdb/tasks/main.yml @@ -1,10 +1,10 @@ --- - name: Enable influxdb apt-key - apt_key: url='https://repos.influxdata.com/influxdb.key' + apt_key: url="https://repos.influxdata.com/influxdb.key" - name: Enable influxdb repository - apt_repository: repo='deb https://repos.influxdata.com/debian buster stable' + apt_repository: repo="deb https://repos.influxdata.com/debian {{ ansible_distribution_release }} stable" - name: Install influxdb apt: name=influxdb