e58dc17e6a
Up until now thorough testing was only conducted with the open source version of MidoNet. More repositories are enabled when building a MEM base image: logstash, vbernat-llpd and elasticsearch. Also additional RPM packages are installed. This is being done using YUM directly (due to the fact that we cannot install some packages depending on certain conditions). Change-Id: Ic88f268f783fcb014d1d19988780758cba762e57
12 lines
269 B
Bash
Executable File
12 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ -n $(grep "builds\.midonet\.org\/mem" /etc/yum.repos.d/*) ]; then
|
|
echo "Installing MEM packages..."
|
|
yum install -y midonet-manager midonet-tools midonet-analytics midonet-jmxscraper lldpd
|
|
yum install -y logstash elasticsearch
|
|
fi
|
|
|
|
exit 0
|