kayobe/ansible/timezone.yml
Will Szumski 085cf7d175 Adds support for configuring chrony
Some hosts in the kayobe inventory might not be in the kolla-ansible
inventory so it makes sense for kayobe to manage NTP.

Change-Id: Iacb579a46b0e9769a4c404a858d17968f74dd7e0
Depends-On: https://review.opendev.org/c/openstack/kayobe-config-dev/+/786040
Story: 2007872
Task: 40240
2021-05-07 18:27:50 +02:00

23 lines
812 B
YAML

---
# Timezone configuration has moved to time.yml.
# This will be removed in the Xena release.
# NOTE(wszumski): Making this a non-empty playbook has the benefit of
# silencing the tox syntax check which doesn't like empty playbooks.
- hosts: localhost
tasks:
- name: Warn about deprecation of this playbook
fail:
msg: |
This playbook has been deprecated, please use time.yml instead.
Kayobe should not run this playbook, so if you are seeing this
message then either something has gone wrong, or you are trying
to run it manually. This playbook will be removed in the Xena
release.
# NOTE(wszumski): We want this to print a nice big red warning and
# not to fail the run.
ignore_errors: yes
- import_playbook: time.yml