Enable timezone configuration

This commit is contained in:
Jason Rothstein 2020-11-22 14:45:17 -06:00
parent f050947f5d
commit 1d713dbef9
2 changed files with 23 additions and 19 deletions

View File

@ -1,21 +1,24 @@
--- ---
roles: roles:
- name: ensure_ansible_prereq - name: 'ensure_ansible_prereq'
src: git+https://git.fdragon.com/AnsibleRoles/ensure_ansible_prereq.git src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_ansible_prereq.git'
version: master version: 'master'
- name: ensure_log_rotation - name: 'ensure_log_rotation'
src: git+https://git.fdragon.com/AnsibleRoles/ensure_log_rotation.git src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_log_rotation.git'
version: master version: 'master'
- name: ensure_os_patch - name: 'ensure_os_patch'
src: git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git'
version: master version: 'master'
- name: ensure_repo_epel - name: 'ensure_timezone'
src: git+https://git.fdragon.com/AnsibleRoles/ensure_repo_epel.git src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_timezone.git'
version: master version: 'master'
- name: ensure_repo_fdragon - name: 'ensure_repo_epel'
src: git+https://git.fdragon.com/AnsibleRoles/ensure_repo_fdragon.git src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_repo_epel.git'
version: master version: 'master'
- name: ensure_repo_rpmfusion - name: 'ensure_repo_fdragon'
src: git+https://git.fdragon.com/AnsibleRoles/ensure_repo_rpmfusion.git src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_repo_fdragon.git'
version: master version: 'master'
- name: 'ensure_repo_rpmfusion'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_repo_rpmfusion.git'
version: 'master'

View File

@ -11,7 +11,8 @@
- role: 'ensure_ansible_prereq' - role: 'ensure_ansible_prereq'
- role: 'ensure_os_patch' - role: 'ensure_os_patch'
- role: 'ensure_log_rotation' - role: 'ensure_log_rotation'
- role: 'ensure_timezone'
- role: 'ensure_repo_epel' - role: 'ensure_repo_epel'
- role: 'ensure_repo_fdragon' - role: 'ensure_repo_fdragon'
- role: 'ensure_repo_rpmfusion' - role: 'ensure_repo_rpmfusion'
...