From 58be94860f42840cb66276d95f41144beb152263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gardais=20J=C3=A9r=C3=A9my?= Date: Wed, 23 Sep 2020 15:07:01 +0200 Subject: [PATCH] Add support for Debian Buster and (not tested) Bionic --- CHANGELOG.md | 1 + defaults/main.yml | 10 ++++++++++ meta/main.yml | 1 + 3 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a97a51..de1c402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * Skip "Ensure to remove OpenManage related packages if requested" when it's not install (with package facts). * Repositories for Debian Jessie and Ubuntu Trusty won't need modifications with new OS versions. +* Add support for Debian Buster and (not tested) Ubuntu Bionic. ## v1.2.0 diff --git a/defaults/main.yml b/defaults/main.yml index 7abc3a0..e1df518 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -14,6 +14,16 @@ # apt_repository and apt_key. # openmanage__repositories: + # Version 940 - for Debian Buster and Ubuntu Bionic + # Force using Bionic repo as Buster repo doesn't exist and Bionic is based on Debian Buster + - repo: 'deb http://linux.dell.com/repo/community/openmanage/940/bionic bionic main' + mode: '0644' + filename: 'dell.openmanage' + key_id: '1285491434D8786F' + key_keyserver: 'pool.sks-keyservers.net' + state: '{{ openmanage__deploy_state + if (ansible_distribution_release in ["buster", "bionic"]) + else "absent" }}' # Version 910 - for Debian Stretch and Ubuntu Xenial - repo: 'deb http://linux.dell.com/repo/community/openmanage/910/{{ ansible_distribution_release }} {{ ansible_distribution_release }} main' mode: '0644' diff --git a/meta/main.yml b/meta/main.yml index f284ff0..99812e9 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -13,6 +13,7 @@ galaxy_info: - name: Debian versions: - stretch + - buster galaxy_tags: - system - openmanage