From 4f740233f7949b55af484b3275ac5a2ef634ffde Mon Sep 17 00:00:00 2001 From: Fredrik Eriksson Date: Wed, 2 Dec 2020 13:19:14 +0100 Subject: [PATCH] just install certbot... --- data/common.yaml | 1 + manifests/init.pp | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 manifests/init.pp diff --git a/data/common.yaml b/data/common.yaml index ed97d53..e8f0a7d 100644 --- a/data/common.yaml +++ b/data/common.yaml @@ -1 +1,2 @@ --- +certbot::package: py37-certbot diff --git a/manifests/init.pp b/manifests/init.pp new file mode 100644 index 0000000..c13f43c --- /dev/null +++ b/manifests/init.pp @@ -0,0 +1,11 @@ +# install and configure certbot +class certbot( + String[1] $package, +) { + + package { + $package: + ensure => present; + } + +}