This commit is contained in:
2023-06-29 09:34:06 -04:00
parent ae572c21d0
commit be9823121a
2 changed files with 1 additions and 13 deletions

View File

@@ -1,15 +1,3 @@
- name: add apt repository key
apt_key:
url: "{{ item }}"
with_items: "{{ apt_keys }}"
become: yes
- name: add apt repository
apt_repository:
repo: "{{ item }}"
with_items: "{{ apt_repo }}"
become: yes
- name: Upgrade Packages
package:
update_cache: yes

View File

@@ -1,9 +1,9 @@
- name: Load a variable file based on the OS type
include_vars: "{{ item }}"
with_first_found:
- "vars/{{ ansible_os_family }}.yml"
- "vars/{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml"
- "vars/{{ ansible_distribution }}.yml"
- "vars/{{ ansible_os_family }}.yml"
- "vars/defaults.yml"
- name: