blob: bca1cf50959e307ff1b5e8a7eca3a67e71007dcf (
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: yes
tags:
- aws-enable-src-repo
|