ansible/roles/ubuntu_base/tasks/custom-apt-repos.yml

10 lines
224 B
YAML
Raw Normal View History

2022-07-15 15:25:33 +00:00
---
- 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
2022-07-15 16:03:40 +00:00