mirror of https://github.com/ceph/ceph-ansible.git
defaults: remove some package dependencies
These packages aren't needed anymore.
They were needed for ceph-init-detect buti as of ceph-init-detect doesn't exist
anymore.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1683885
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit 5c98e361df
)
pull/3871/head
parent
72309b49fe
commit
5aca0996ed
|
@ -76,23 +76,12 @@ dummy:
|
||||||
############
|
############
|
||||||
# PACKAGES #
|
# PACKAGES #
|
||||||
############
|
############
|
||||||
#debian_package_dependencies:
|
|
||||||
# - python-pycurl
|
|
||||||
|
|
||||||
#centos_package_dependencies:
|
#centos_package_dependencies:
|
||||||
# - python-pycurl
|
|
||||||
# - epel-release
|
# - epel-release
|
||||||
# - python-setuptools
|
|
||||||
# - libselinux-python
|
# - libselinux-python
|
||||||
|
|
||||||
#redhat_package_dependencies:
|
|
||||||
# - python-pycurl
|
|
||||||
# - python-setuptools
|
|
||||||
|
|
||||||
#suse_package_dependencies:
|
#suse_package_dependencies:
|
||||||
# - python-pycurl
|
|
||||||
# - python-xml
|
# - python-xml
|
||||||
# - python-setuptools
|
|
||||||
|
|
||||||
# Whether or not to install the ceph-test package.
|
# Whether or not to install the ceph-test package.
|
||||||
#ceph_test: false
|
#ceph_test: false
|
||||||
|
|
|
@ -76,23 +76,12 @@ fetch_directory: ~/ceph-ansible-keys
|
||||||
############
|
############
|
||||||
# PACKAGES #
|
# PACKAGES #
|
||||||
############
|
############
|
||||||
#debian_package_dependencies:
|
|
||||||
# - python-pycurl
|
|
||||||
|
|
||||||
#centos_package_dependencies:
|
#centos_package_dependencies:
|
||||||
# - python-pycurl
|
|
||||||
# - epel-release
|
# - epel-release
|
||||||
# - python-setuptools
|
|
||||||
# - libselinux-python
|
# - libselinux-python
|
||||||
|
|
||||||
#redhat_package_dependencies:
|
|
||||||
# - python-pycurl
|
|
||||||
# - python-setuptools
|
|
||||||
|
|
||||||
#suse_package_dependencies:
|
#suse_package_dependencies:
|
||||||
# - python-pycurl
|
|
||||||
# - python-xml
|
# - python-xml
|
||||||
# - python-setuptools
|
|
||||||
|
|
||||||
# Whether or not to install the ceph-test package.
|
# Whether or not to install the ceph-test package.
|
||||||
#ceph_test: false
|
#ceph_test: false
|
||||||
|
|
|
@ -11,15 +11,6 @@
|
||||||
register: result
|
register: result
|
||||||
until: result is succeeded
|
until: result is succeeded
|
||||||
|
|
||||||
- name: install dependencies
|
|
||||||
apt:
|
|
||||||
name: "{{ debian_package_dependencies }}"
|
|
||||||
state: present
|
|
||||||
update_cache: yes
|
|
||||||
cache_valid_time: 3600
|
|
||||||
register: result
|
|
||||||
until: result is succeeded
|
|
||||||
|
|
||||||
- name: include install_debian_packages.yml
|
- name: include install_debian_packages.yml
|
||||||
include_tasks: install_debian_packages.yml
|
include_tasks: install_debian_packages.yml
|
||||||
when:
|
when:
|
||||||
|
|
|
@ -1,13 +1,4 @@
|
||||||
---
|
---
|
||||||
- name: install redhat dependencies
|
|
||||||
package:
|
|
||||||
name: "{{ redhat_package_dependencies }}"
|
|
||||||
state: present
|
|
||||||
register: result
|
|
||||||
until: result is succeeded
|
|
||||||
when:
|
|
||||||
- ansible_distribution == 'RedHat'
|
|
||||||
|
|
||||||
- name: install centos dependencies
|
- name: install centos dependencies
|
||||||
yum:
|
yum:
|
||||||
name: "{{ centos_package_dependencies }}"
|
name: "{{ centos_package_dependencies }}"
|
||||||
|
|
|
@ -68,23 +68,12 @@ ceph_conf_local: false
|
||||||
############
|
############
|
||||||
# PACKAGES #
|
# PACKAGES #
|
||||||
############
|
############
|
||||||
debian_package_dependencies:
|
|
||||||
- python-pycurl
|
|
||||||
|
|
||||||
centos_package_dependencies:
|
centos_package_dependencies:
|
||||||
- python-pycurl
|
|
||||||
- epel-release
|
- epel-release
|
||||||
- python-setuptools
|
|
||||||
- libselinux-python
|
- libselinux-python
|
||||||
|
|
||||||
redhat_package_dependencies:
|
|
||||||
- python-pycurl
|
|
||||||
- python-setuptools
|
|
||||||
|
|
||||||
suse_package_dependencies:
|
suse_package_dependencies:
|
||||||
- python-pycurl
|
|
||||||
- python-xml
|
- python-xml
|
||||||
- python-setuptools
|
|
||||||
|
|
||||||
# Whether or not to install the ceph-test package.
|
# Whether or not to install the ceph-test package.
|
||||||
ceph_test: false
|
ceph_test: false
|
||||||
|
|
Loading…
Reference in New Issue