diff options
-rw-r--r-- | manifests/init.pp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index a946ba8..5941ba3 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -27,7 +27,10 @@ class certbot( } package { $tool: - ensure => present, + ensure => $::lsbdistcodename ? { + trusty => absent, + default => present, + }, require => File[$basedir], } |