ansible/roles/common/tasks/system.yml

12 lines
396 B
YAML

#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
- name: configure hostname
hostname: name={{ inventory_hostname }}
- name: ensure loopback name
lineinfile: path=/etc/hosts line="127.0.0.1 {{ inventory_hostname }}"
- name: configure timezone
timezone: name=America/Chicago
notify: restart cron
- name: configure shell profile
template: src=profile.sh dest=/etc/profile.d/50-ansible.sh