# HG changeset patch # User IBBoard # Date 1691936378 -3600 # Node ID a08a2f718f9d80f7bcd94cd6e738ccb121317c3c # Parent f4ed14153cda36ff2f13efa2a8dc4f4899e7622e Fix Certbot dependency on Ubuntu `certbot` just imports the script without the Apache module, which prevents us renewing diff -r f4ed14153cda -r a08a2f718f9d modules/website/manifests/init.pp --- a/modules/website/manifests/init.pp Sun Aug 13 15:17:57 2023 +0100 +++ b/modules/website/manifests/init.pp Sun Aug 13 15:19:38 2023 +0100 @@ -173,7 +173,7 @@ } } elsif $operatingsystem == 'Ubuntu' { - $certbot_pkg = 'certbot' + $certbot_pkg = 'python3-certbot-apache' } cron { 'letsencrypt-renewal': command => '/usr/bin/certbot renew --quiet',