Merge "Change chef installation method"

This commit is contained in:
Jenkins 2016-06-20 12:02:03 +00:00 committed by Gerrit Code Review
commit 71c46bdb6a
2 changed files with 12 additions and 1 deletions

View File

@ -2,7 +2,14 @@
set -eu
install-packages git-core wget make gcc python-pip python-dev python-setuptools chef puppet
install-packages git-core wget make gcc python-pip python-dev python-setuptools puppet
if test -f /etc/redhat-release
then
rpm -Uvh https://packages.chef.io/stable/el/7/chef-12.9.41-1.el7.x86_64.rpm
else
install-packages chef
fi
name=murano-agent
svc_root=${DIB_MURANO_AGENT_SVC_ROOT:-/opt/stack/$name}

View File

@ -0,0 +1,4 @@
---
fixes:
- Elements were updated to allow building murano fedora images with chef installed.
Chef is installed from https://packages.chef.io