The following walk through works on Debian 9, 10, and 11.
sudo apt update sudo apt install snapd sudo snap install core sudo snap refresh core
sudo apt remove --purge certbot sudo rm /usr/local/bin/certbot-auto
sudo snap install --classic certbot sudo ln -s /snap/bin/certbot /usr/bin/certbot
sudo certbot renew --dry-run
systemctl list-timers
certbot
certbot certificates
certbot --expand -d example.com,www.example.com,click.example.com certbot certonly --webroot --agree-tos -w /srv/www/letsencrypt/ --expand -d example.com,www.example.com,click.example.com
certbot revoke --cert-path /etc/letsencrypt/live/example.com/cert.pem
certbot delete --cert-name www.example.com
certbot delete
certbot certonly --force-renew --cert-name mycertificate.com -d remove.mycertificate.com -d add.mycertificate.com
certbot -d example.com -d example.net
/etc/systemd/system/snap.certbot.renew.timer
which removes the times set when certbot is called$ sudo vim /etc/systemd/system/snap.certbot.renew.timer [Timer] Unit=snap.certbot.renew.service # OnCalendar=*-*-* 08:46 # OnCalendar=*-*-* 15:37
$ sudo crontab -e 35 3 * * 6 certbot renew && /etc/init.d/apache2 restart