ansible/roles/ubuntu_base/tasks/custom-apt-repos.yml
2022-07-22 12:37:39 +00:00

15 lines
No EOL
337 B
YAML

---
- name: import dell apt signing key
apt_key:
id: "1285491434D8786F"
keyserver: "keyserver.ubuntu.com"
- name: "configure dell apt repo"
apt_repository:
repo: "deb https://linux.dell.com/repo/community/openmanage/10101/focal focal main"
state: "present"
- name: update apt cache
apt:
update_cache: yes