21 lines
566 B
YAML
21 lines
566 B
YAML
---
|
|
- name: Import dell apt signing key
|
|
ansible.builtin.apt_key:
|
|
id: 1285491434D8786F
|
|
keyserver: keyserver.ubuntu.com
|
|
|
|
- name: Configure dell apt repo
|
|
ansible.builtin.apt_repository:
|
|
repo: deb https://linux.dell.com/repo/community/openmanage/10101/focal focal
|
|
main
|
|
state: present
|
|
|
|
- name: Restrict dell apt repo"
|
|
ansible.builtin.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
|