blob: 60302f23095d2ad369a9bb9c9e3677836b830a1a (
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: true
tags:
- aws-enable-src-repo
|