Add the rest of the common role

This commit is contained in:
2019-03-16 20:35:27 +00:00
parent ddad3dc65d
commit bd6c3d307a
5 changed files with 48 additions and 0 deletions

View File

@ -1,6 +1,24 @@
---
- name: gather OS specific variables
include_vars: "{{ item }} "
with_first_found:
- "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yaml"
- "{{ ansible_distribution }}.yaml"
- "{{ ansible_os_family }}.yaml"
- name: install system utilities
package:
name: "{{ item }}"
state: present
with_items: "{{ sys_utils }}"
- name: configure resolv.conf
template:
src: resolv.conf.j2
dest: /etc/resolv.conf
notify: "restart resolv"
- name: configure system timezone
timezone:
name: "{{ timezone }}"
notify: restart cron