Add Dell OpenManage APT repo

This commit is contained in:
Jesper Hess 2022-07-15 17:25:33 +02:00
parent 2e3cd4c8b0
commit f619735629
Signed by untrusted user: graffen
GPG Key ID: 351A89E40D763F0F
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,11 @@
---
- name: "configure dell apt repo"
apt_repository:
repo: "deb https://linux.dell.com/repo/community/openmanage/10101/focal focal main"
state: "present"
tags: setup-custom-apt
- name: update apt cache
apt:
update_cache: yes
tags: setup-custom-apt

View File

@ -1,4 +1,6 @@
---
- import_tasks: custom-apt-repos.yml
- import_tasks: upgrade.yml
- import_tasks: base.yml
- import_tasks: users.yml