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