From 553786da9af102540e2714a113aa203f8a9acaea Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Sun, 19 Nov 2023 14:46:06 +0200 Subject: [PATCH] fix release name --- tasks/install_x86_64.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/install_x86_64.yml b/tasks/install_x86_64.yml index 884bd6b..1000249 100644 --- a/tasks/install_x86_64.yml +++ b/tasks/install_x86_64.yml @@ -3,14 +3,14 @@ apt: deb: "https://apt.puppetlabs.com/puppet{{ puppet_version }}-release-{{ ansible_distribution_release }}.deb" when: - - ansible_facts['distribution_release'] not in ['groovy', 'hirsute', 'lunar', 'maniac'] + - ansible_facts['distribution_release'] not in ['groovy', 'hirsute', 'lunar', 'mantic'] - name: Ensure Puppet repository is installed (Ubuntu not LTS) apt: - deb: "https://apt.puppetlabs.com/puppet{{ puppet_version }}-release-focal.deb" + deb: "https://apt.puppetlabs.com/puppet{{ puppet_version }}-release-jammy.deb" when: - ansible_facts['distribution'] != 'Debian' - - ansible_facts['distribution_release'] in ['groovy', 'hirsute', 'lunar', 'maniac'] + - ansible_facts['distribution_release'] in ['groovy', 'hirsute', 'lunar', 'mantic'] - name: Ensure Puppet repository is installed (Debian Bookworm) apt: