Moved EPEL installation command to Docker file. Travis now uses custom Docker image built from CentOS Dockerfile. nolog re-enabled for user admin checking.

This commit is contained in:
jsaliba 2017-09-14 10:56:34 +02:00
parent 9bb46f2f20
commit 986678b733
4 changed files with 8 additions and 12 deletions

View File

@ -53,7 +53,7 @@ env:
# MONGODB_VERSION=3.2
- >
DISTRIBUTION=centos
DIST_VERSION=7
DIST_VERSION=7-builded
MONGODB_VERSION=3.4
# - >
# distribution=ubuntu-upstart

View File

@ -20,12 +20,6 @@
- "{{ mongodb_package }}"
- numactl
# This step is needed when running CentOS in Docker since the docker image does not come with EPEL installed by default
- name: Install EPEL release
yum:
name: epel-release
state: present
- name: Install PyMongo package
yum:
name: python-pymongo

View File

@ -27,11 +27,10 @@
when: mongodb_replication_replset and mongodb_replication_replset != ''
tags: [mongodb]
- name: Check user admin is exists
- name: Check where admin user already exists
command: >
mongo --quiet -u {{ mongodb_user_admin_name }} \
-p {{ mongodb_user_admin_password }} --port {{ mongodb_net_port }} --eval 'db.version()' admin
register: mongodb_user_admin_check
changed_when: false
always_run: yes # side-effect free, so it can be run in check-mode as well
@ -39,7 +38,7 @@
when: ( mongodb_security_authorization == 'enabled'
and (not mongodb_replication_replset
or mongodb_replication_replset == '') )
# no_log: true
no_log: true
tags: [mongodb]
- name: Include authorization configuration

View File

@ -1,10 +1,13 @@
FROM centos:7
# This is needed so that ansible managed to read "ansible_default_ipv4"
RUN yum install iproute
RUN yum install iproute -y
# This step is needed since standard CentOS docker image does not come with EPEL installed by default
RUN yum install epel-release
# we can has SSH
EXPOSE 22
# pepare for takeoff
CMD ["/usr/sbin/init"]
CMD ["/usr/sbin/init"]