Skip to content
Snippets Groups Projects
pythonpackages.sls 408 B
Newer Older
  • Learn to ignore specific revisions
  • # Always ships this packages - we need them for grains
    {% if grains['os'] == 'Debian' and grains['oscodename'] != 'squeeze' or grains['os'] == 'Ubuntu' %}
    hsh_python_packages_salt:
      pkg.installed:
        - pkgs:
          - python-netifaces
          - python-psutil
    
    {% elif grains['os'] == 'FreeBSD' %}
    hsh_python_packages_salt:
      pkg.installed:
        - pkgs:
          - net/py-netifaces
          - py27-psutil
    
    {% endif %}