Skip to content
Snippets Groups Projects
Commit 1f7a910b authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Remove chrony package if containerized chrony is enabled"

parents d6b2f5e6 3d747b72
No related branches found
No related tags found
No related merge requests found
...@@ -60,11 +60,13 @@ ubuntu_pkg_removals: ...@@ -60,11 +60,13 @@ ubuntu_pkg_removals:
- lxc - lxc
- libvirt-bin - libvirt-bin
- open-iscsi - open-iscsi
- "{% if enable_chrony | bool %}chrony{% endif %}"
redhat_pkg_removals: redhat_pkg_removals:
- libvirt - libvirt
- libvirt-daemon - libvirt-daemon
- iscsi-initiator-utils - iscsi-initiator-utils
- "{% if enable_chrony | bool %}chrony{% endif %}"
# Path to a virtualenv in which to install python packages. If None, a # Path to a virtualenv in which to install python packages. If None, a
# virtualenv will not be used. # virtualenv will not be used.
......
...@@ -146,6 +146,22 @@ ...@@ -146,6 +146,22 @@
- ansible_distribution == "Ubuntu" - ansible_distribution == "Ubuntu"
- apparmor_libvirtd_profile.stat.exists - apparmor_libvirtd_profile.stat.exists
- name: Get stat of chronyd apparmor profile
stat:
path: /etc/apparmor.d/usr.sbin.chronyd
register: apparmor_chronyd_profile
when:
- ansible_os_family == "Debian"
- enable_chrony | bool
- name: Remove apparmor profile for chrony
command: apparmor_parser -R /etc/apparmor.d/usr.sbin.chronyd
become: True
when:
- ansible_os_family == "Debian"
- enable_chrony | bool
- apparmor_chronyd_profile.stat.exists
- name: Create docker group - name: Create docker group
group: group:
name: docker name: docker
......
---
fixes:
- |
Removing chrony package and AppArmor profile from docker host if
containerized chrony is enabled.
`LP#1882513 <https://bugs.launchpad.net/kolla-ansible/+bug/1882513>`__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment