11 lines
270 B
YAML
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
|