2019-09-19 19:09:41 +01:00
|
|
|
- name: Adding repositories
|
2019-05-27 12:56:29 +01:00
|
|
|
tags:
|
|
|
|
- install
|
2019-09-19 19:09:41 +01:00
|
|
|
- repos
|
|
|
|
- matrix
|
|
|
|
include: includes/repos.yaml
|
|
|
|
loop: "{{ linux_repos }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: repo
|
|
|
|
|
|
|
|
- name: Installing packages
|
|
|
|
tags:
|
|
|
|
- install
|
|
|
|
- packages
|
2019-05-27 12:56:29 +01:00
|
|
|
- matrix
|
|
|
|
package:
|
2019-09-19 19:09:41 +01:00
|
|
|
name: "{{ item }}"
|
|
|
|
state: present
|
|
|
|
loop: "{{ linux_packages }}"
|
|
|
|
become: true
|