0

I trying to install SALT on Fedora:

yum install salt-master

and It gives me the following Error:

Error: Package: salt-2014.1.7-3.el6.noarch (epel)
           Requires: python-jinja2
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

When I trying to install python-ninja2, It gives me the following error:

Setting up Install Process
No package python-jinja2 available.
Error: Nothing to do

What can be the reason for this case? How can I solve it?

OrangeDog
  • 36,653
  • 12
  • 122
  • 207
Or Smith
  • 3,556
  • 13
  • 42
  • 69

2 Answers2

2

This was a actual bug in the RedHat distribution, refer the bugzilla page to get the solution

https://bugzilla.redhat.com/show_bug.cgi?id=844710

Santosh A
  • 5,173
  • 27
  • 37
0

To add the optional repository in RHEL for the python-jinja2 package, execute the command:

sudo subscription-manager repos --enable rhel-6-server-optional-rpms

Mudfly
  • 1