--- # Copyright 2017, Logan Vig # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - include_tasks: "common-tasks/os-{{ container_tech | default('lxc') }}-container-setup.yml" when: not is_metal vars: list_of_bind_mounts: "{{ ceph_container_bind_mounts }}" - include_tasks: common-tasks/unbound-clients.yml when: - hostvars['localhost']['resolvconf_enabled'] | bool #TODO: mgariepy, revisit to use include_role when https://github.com/ansible/ansible/issues/20077 is fixed - name: Ensure Ansible can work with SELinux package: name: libselinux-python3 state: present when: - ansible_facts['pkg_mgr'] in ['yum', 'dnf'] # Set the priority of the ceph community apt repo either above or below that of UCA or distro sources - name: Set apt package pins include_role: name: apt_package_pinning vars: apt_package_pinning_file_name: "ceph_community_pin.pref" apt_package_pinning_priority: "{{ (ceph_repository == 'community') | ternary(1000, 100) }}" apt_pinned_packages: [{ package: '*', release: 'ceph.com' }] when: - ansible_facts['pkg_mgr'] == 'apt' - name: Install python3-yaml package: name: "{{ (ansible_facts['os_family'] | lower == 'debian') | ternary('python3-yaml', 'python3-pyyaml') }}" state: present