mirror of https://github.com/ceph/ceph-ansible.git
32 lines
749 B
YAML
32 lines
749 B
YAML
---
|
|
|
|
- hosts: all
|
|
gather_facts: true
|
|
become: yes
|
|
tasks:
|
|
|
|
- name: check if it is Atomic host
|
|
stat: path=/run/ostree-booted
|
|
register: stat_ostree
|
|
check_mode: no
|
|
|
|
- name: set fact for using Atomic host
|
|
set_fact:
|
|
is_atomic: '{{ stat_ostree.stat.exists }}'
|
|
|
|
# we need to install this so the Socket testinfra module
|
|
# can use netcat for testing
|
|
- name: install net-tools
|
|
package:
|
|
name: net-tools
|
|
state: present
|
|
when:
|
|
- not is_atomic
|
|
|
|
- name: disable fastest mirror detection
|
|
ini_file:
|
|
path: /etc/yum/pluginconf.d/fastestmirror.conf
|
|
section: main
|
|
option: enabled
|
|
value: 0
|
|
when: ansible_distribution == 'CentOS' |