ansible/roles/common/tasks/system.yml
2020-10-17 01:00:06 -05:00

11 lines
270 B
YAML

#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
- name: configure system
block:
- name: configure hostname
hostname: name={{ inventory_hostname }}
- name: configure timezone
timezone: name=America/Chicago
notify: restart cron
become: yes