Since downburst may use default cloud images which mostly
miss ntp by default, make sure we preinstall ntp or chrony
required for ceph cluster to sync the date time, otherwise
osd self scrub check will fail.
Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
'git',
'wget',
])
+ if os_type in ('centos', 'opensuse'):
+ user_info['packages'].extend([
+ 'chrony',
+ ])
+ if os_type in ('ubuntu', 'debian'):
+ user_info['packages'].extend([
+ 'ntp',
+ ])
+
# On CentOS/RHEL/Fedora, write the correct mac address and
# install redhab-lsb-core for `lsb_release`
if os_type in ['centos', 'rhel', 'fedora']: