From 8709d5640897f0e76815d321a2255e0de84f29f3 Mon Sep 17 00:00:00 2001 From: Steven Pritchard Date: Wed, 11 Oct 2023 12:15:47 -0500 Subject: [PATCH] Add missing augeasprovider_grub_version fact Add missing `augeasprovider_grub_version` fact to amazon-2, oraclelinux-7, and oraclelinux-8 fact sets --- CHANGELOG.md | 4 ++++ facts/4.5/amazon-2-x86_64.facts | 1 + facts/4.5/oraclelinux-7-x86_64.facts | 1 + facts/4.5/oraclelinux-8-x86_64.facts | 1 + lib/simp/version.rb | 2 +- 5 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69fd16b2..398d7a06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2023-10-11 / 3.8.2 - Add missing augeasprovider_grub_version fact +- Add missing `augeasprovider_grub_version` fact to amazon-2, oraclelinux-7, + and oraclelinux-8 fact sets + ## 2023-09-27 / 3.8.1 - Fix GHA release workflow - Fix GHA release workflow diff --git a/facts/4.5/amazon-2-x86_64.facts b/facts/4.5/amazon-2-x86_64.facts index 90d50205..3d758083 100644 --- a/facts/4.5/amazon-2-x86_64.facts +++ b/facts/4.5/amazon-2-x86_64.facts @@ -73,6 +73,7 @@ "augeas": { "version": "1.13.0" }, + "augeasprovider_grub_version": 2, "augeasversion": "1.13.0", "bios_release_date": "12/01/2006", "bios_vendor": "innotek GmbH", diff --git a/facts/4.5/oraclelinux-7-x86_64.facts b/facts/4.5/oraclelinux-7-x86_64.facts index d147cc5a..1c840b1c 100644 --- a/facts/4.5/oraclelinux-7-x86_64.facts +++ b/facts/4.5/oraclelinux-7-x86_64.facts @@ -76,6 +76,7 @@ "augeas": { "version": "1.13.0" }, + "augeasprovider_grub_version": 2, "augeasversion": "1.13.0", "bios_release_date": "12/01/2006", "bios_vendor": "innotek GmbH", diff --git a/facts/4.5/oraclelinux-8-x86_64.facts b/facts/4.5/oraclelinux-8-x86_64.facts index dcd68037..ba441a2a 100644 --- a/facts/4.5/oraclelinux-8-x86_64.facts +++ b/facts/4.5/oraclelinux-8-x86_64.facts @@ -115,6 +115,7 @@ "augeas": { "version": "1.13.0" }, + "augeasprovider_grub_version": 2, "augeasversion": "1.13.0", "bios_release_date": "12/01/2006", "bios_vendor": "innotek GmbH", diff --git a/lib/simp/version.rb b/lib/simp/version.rb index 7969bb82..a160c9d0 100644 --- a/lib/simp/version.rb +++ b/lib/simp/version.rb @@ -1,4 +1,4 @@ module Simp; end module Simp::RspecPuppetFacts - VERSION = '3.8.1' + VERSION = '3.8.2' end