cloud_setup_basic: unmask tmp.mount

Since we enable logrotate automatically on all infrastructure VMs (if
Fedora), it requires tmp.mount unmasked nowadays.
This commit is contained in:
Pavel Raiskup 2020-02-20 14:22:45 +01:00 committed by Pierre-Yves Chibon
parent 01ce13e3ec
commit f84a1ea988

View file

@ -81,3 +81,9 @@
when: updated is defined
tags:
- packages
- name: ensure tmp.mount is not masked, logrotate start would fail
systemd:
name: tmp.mount
masked: no
when: ansible_distribution_major_version|int >= 30 and ansible_distribution == 'Fedora'