From d2a825487ef1926f564d94b282d2acb13bfd367f Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Fri, 27 Dec 2024 10:41:14 -0500 Subject: [PATCH] Remove unnecessary lower filter --- tasks/setup_Debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setup_Debian.yml b/tasks/setup_Debian.yml index ee9ff24..f8d3aa3 100644 --- a/tasks/setup_Debian.yml +++ b/tasks/setup_Debian.yml @@ -28,7 +28,7 @@ url: https://download.docker.com/linux/{{ apt_distro }}/gpg - name: Add the official Docker repo ansible.builtin.apt_repository: - repo: deb https://download.docker.com/linux/{{ apt_distro | lower }} {{ apt_distro_release }} stable + repo: deb https://download.docker.com/linux/{{ apt_distro }} {{ apt_distro_release }} stable # ansible.builtin.apt_repository updates the package cache so # there is no need to do it explicitly.