Add apt preferences file for dell repo #98

Merged
graffen merged 1 commits from fix-95 into master 2022-07-22 18:51:18 +00:00
1 changed files with 9 additions and 1 deletions

View File

@ -8,8 +8,16 @@
apt_repository:
repo: "deb https://linux.dell.com/repo/community/openmanage/10101/focal focal main"
state: "present"
- name: "restrict dell apt repo"
copy:
dest: "/etc/apt/preferences.d/dell"
content: |
Explanation: Deny all packages from this repo that exist elsewhere
Package: *
Pin: origin "linux.dell.com"
Pin-Priority: 400
- name: update apt cache
apt:
update_cache: yes