Skip to content

Commit

Permalink
Add az-dcap-client back to main for now, to enable LTS-compatible bas…
Browse files Browse the repository at this point in the history
…e images
  • Loading branch information
achamayou committed Jan 8, 2025
1 parent 7f720b7 commit 1031902
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
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

0 comments on commit 1031902

Please sign in to comment.