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

Add az-dcap-client back to main for now, to enable LTS-compatible base images #6741

Closed
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions getting_started/setup_vm/ccf-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
- import_role:
name: lldb
tasks_from: install.yml
- import_role:
name: az_dcap
tasks_from: install.yml
- import_role:
name: autoremove
tasks_from: install.yml
18 changes: 18 additions & 0 deletions getting_started/setup_vm/roles/az_dcap/tasks/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
- name: Add Microsoft repository key
apt_key:
url: "https://packages.microsoft.com/keys/microsoft.asc"
state: present
become: true

- name: Add Microsoft sources list
apt_repository:
repo: "deb [arch=amd64] https://packages.microsoft.com/ubuntu/{{ ansible_distribution_version }}/prod {{ ansible_distribution_release }} main"
state: present
become: true

- name: Install the Azure DCAP Client
apt:
name: az-dcap-client
state: present
force: true
become: true
Loading