Merge "change the timezone precheck task's condition"

This commit is contained in:
Zuul 2020-08-24 10:27:36 +00:00 committed by Gerrit Code Review
commit d4ef57130c

@ -23,4 +23,4 @@
/etc/timezone is not found. This file is used for system-wide timezone
settings and Kolla Ansible needs this file for mounting it to containers.
when: not etc_timezone.stat.exists
when: kolla_base_distro in ['ubuntu', 'debian']
when: ansible_os_family == 'Debian'