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