forked from data.coop/ansible
11 lines
272 B
YAML
11 lines
272 B
YAML
|
---
|
||
|
- 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
|