Removing crypto pip dependency for complete RedHat family

This commit is contained in:
Nitin Madhok 2014-11-12 20:56:15 -05:00
parent 0f5f976433
commit 570b45a9ef
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ pycrypto:
- require:
- pkg: python-pip
{% if grains['os_family'] != 'Debian' %}
{% if grains['os_family'] not in ['Debian', 'RedHat'] %}
crypto:
pip.installed:
- require:
@ -28,7 +28,7 @@ salt-cloud:
- require:
- pip: apache-libcloud
- pip: pycrypto
{% if grains['os_family'] != 'Debian' %}
{% if grains['os_family'] not in ['Debian', 'RedHat'] %}
- pip: crypto
{% endif %}