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