Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pkg.cloudflare.com urls #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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