From 43b5ad4fef027c2e32f3160ad9cb3a7515d88642 Mon Sep 17 00:00:00 2001 From: Dale Anderson Date: Fri, 30 Dec 2022 14:56:00 -0800 Subject: [PATCH] Override defaults for Pop!_OS --- vars/Pop!_OS.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 vars/Pop!_OS.yml diff --git a/vars/Pop!_OS.yml b/vars/Pop!_OS.yml new file mode 100644 index 0000000..805a36b --- /dev/null +++ b/vars/Pop!_OS.yml @@ -0,0 +1,13 @@ +--- +# Since: +# * `ansible_distribution` evaluates to Pop!_OS, and +# * docker does not (yet) support Pop!_OS, and +# * Pop_OS is effectively Ubuntu (for our purposes), and +# * There isn't a 'better' variable we easily use +# we need to just wire in 'ubuntu' instead of relying on `ansible_distribution`. + +# If "https://download.docker.com/linux/pop!_os/gpg" ever exists, this can be removed. +docker_apt_gpg_key: "{{ docker_repo_url }}/ubuntu/gpg" + +# If "https://download.docker.com/linux/pop!_os/....." ever exists, this can be removed. +docker_apt_repository: "deb [arch={{ docker_apt_arch }}] {{ docker_repo_url }}/ubuntu {{ ansible_distribution_release }} {{ docker_apt_release_channel }}"