Acabo de actualizar mi servidor con Ubuntu 16.04 y uno de los paquetes que se ha actualizado es certbot
, el cliente de Let's Encrypt que se encarga de renovar los certificados. No entiendo muy bien el mensaje y no sé si tengo que modificar o hacer algún cambio.
El mensaje que me muestra es:
The default certbot cron hooks have been disabled!
│
│ The global cron hooks as provided by Ubuntu PPA packages would disrupt
│ any custom setup for renewals possibly causing the renewals of the
│ certificates to fail.
│
│ As of 0.12.0 version of the packages, the default cron hooks have been
│ removed. You have two options if you want to keep the existing
│ functionality:
│
│ * Change the default cron job or systemd timers, and add:
│ --pre-hook '/bin/run-parts /etc/letsencrypt/pre-hook.d/' \
│ --post-hook '/bin/run-parts /etc/letsencrypt/post-hook.d/' \
│ --renew-hook '/bin/run-parts /etc/letsencrypt/renew-hook.d/'
│ at the end of the `certbot -q renew' command.
│
│
│ * Add following lines to every /etc/letsencrypt/renewal/.conf
│ in the [renewalparams] section:
│ post_hook = /bin/run-parts /etc/letsencrypt/post-hook.d/
│ renew_hook = /bin/run-parts /etc/letsencrypt/renew-hook.d/
│ pre_hook = /bin/run-parts /etc/letsencrypt/pre-hook.d/
│ and use the same command line options when issuing a new
│ certificate.
En mi caso he creado un pequeño script en bash que ejecuta el comando para renovar el certificado. Este script en bash lo ejecuto una vez por semana con un cronjob.
La cuestión es que me surgen varias dudas tras leer el mensaje de actualización. ¿Qué tengo que hacer? ¿Tengo que cambiar algo en la configuración? ¿Se seguirán renovando los certificados automáticamente como hasta ahora?