Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tasks/setup.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
- name: Add Cloudflare key
apt_key:
url: 'https://pkg.cloudflare.com/pubkey.gpg'
url: 'https://pkg.cloudflare.com/cloudflare-main.gpg'

- name: Add Cloudflare PPA
apt_repository:
repo: 'deb http://pkg.cloudflare.com/ xenial main'
repo: 'deb http://pkg.cloudflare.com/cloudflared xenial main'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question: Should we change xenial to something else for ubuntu 20.04?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh right, so something like this:

Suggested change
repo: 'deb http://pkg.cloudflare.com/cloudflared xenial main'
repo: 'deb http://pkg.cloudflare.com/cloudflared bullseye main'

I'm not sure if more recent versions of Debian/Ubuntu works as intended while asking for a specific release version. I'm still new to Linux, any thoughts on this?


- name: Install CFCA
apt:
Expand Down