From 9ddaab6fce29cf28daa406d47a1b1fcdde7b4722 Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Sun, 26 Nov 2023 14:42:14 -0800 Subject: [PATCH] move letsencrypt::configure_epel from hiera to init.pp This way we get the default documented in REFERENCE.md. --- REFERENCE.md | 2 ++ data/common.yaml | 2 +- manifests/init.pp | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/REFERENCE.md b/REFERENCE.md index 1771d7d7..c7acece6 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -184,6 +184,8 @@ Data type: `Boolean` A feature flag to include the 'epel' class and depend on it for package installation. +Default value: `false` + ##### `agree_tos` Data type: `Boolean` diff --git a/data/common.yaml b/data/common.yaml index 23925b49..d9e1a256 100644 --- a/data/common.yaml +++ b/data/common.yaml @@ -1,2 +1,2 @@ --- -letsencrypt::configure_epel: false +{} diff --git a/manifests/init.pp b/manifests/init.pp index dd4c80ea..9c37d08a 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -61,7 +61,7 @@ # Example: "example.com www.example.com" # class letsencrypt ( - Boolean $configure_epel, + Boolean $configure_epel = false, Optional[String] $email = undef, Array $environment = [], String $package_name = 'certbot',