blob: a8cc56c0c4a7d682b15eb6f161ca4c75b51c7a1f (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
# file: roles/aws/tasks/ubuntu_focal.yaml.yaml
- name: Enable deb-src APT Repository
apt_repository:
repo: "deb-src http://archive.ubuntu.com/ubuntu focal main"
state: "present"
update_cache: yes
tags:
- aws-enable-src-repo
|