2020-10-17 01:00:06 -05:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
2020-11-08 00:05:48 -06:00
|
|
|
- name: configure hostname
|
|
|
|
hostname: name={{ inventory_hostname }}
|
2020-11-08 06:33:59 -06:00
|
|
|
- name: ensure loopback name
|
|
|
|
lineinfile: path=/etc/hosts line="127.0.0.1 {{ inventory_hostname }}"
|
2020-11-08 00:05:48 -06:00
|
|
|
- name: configure timezone
|
|
|
|
timezone: name=America/Chicago
|
|
|
|
notify: restart cron
|
2020-12-29 09:48:18 -06:00
|
|
|
- name: configure shell profile
|
2021-07-01 12:12:06 -05:00
|
|
|
template: src=profile.sh dest=/etc/profile.d/50-ansible.sh mode=0644
|