From 63d5da56903d8befb80a096c8babf0d2603a311a Mon Sep 17 00:00:00 2001 From: jack-rep <169091763+jack-rep@users.noreply.github.com> Date: Wed, 20 Aug 2025 15:33:05 -0700 Subject: [PATCH 1/2] Add snap channel var to install-with-snap.yml --- tasks/install-with-snap.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/install-with-snap.yml b/tasks/install-with-snap.yml index 7a0ca65..440fae1 100644 --- a/tasks/install-with-snap.yml +++ b/tasks/install-with-snap.yml @@ -28,6 +28,7 @@ snap: name: certbot classic: true + channel: "{{ certbot_snap_channel }}" - name: Symlink certbot into place. file: From cbde30f6d848470036e928a70224576a4fd2f289 Mon Sep 17 00:00:00 2001 From: jack-rep <169091763+jack-rep@users.noreply.github.com> Date: Wed, 20 Aug 2025 15:37:40 -0700 Subject: [PATCH 2/2] Add certbot snap channel var to defaults --- defaults/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/defaults/main.yml b/defaults/main.yml index 3f29db0..b633e1b 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -60,6 +60,8 @@ certbot_create_standalone_stop_services: # Available options: 'package', 'snap', 'source'. certbot_install_method: 'package' +# Snap install options: 'stable', 'beta', 'edge', for more see https://snapcraft.io/docs/channels +certbot_snap_channel: 'stable' # Source install configuration. certbot_repo: https://github.com/certbot/certbot.git