Skip to content
Snippets Groups Projects
Select Git revision
  • f0d27078daba35277c428c63082b939b044ba167
  • main default protected
  • rewrite
  • simulation-old
4 results

Integrators.test.ts

Blame
  • pythonpackages.sls 498 B
    # Always ships this packages - we need them for grains
    # TODO: Remove the python- versions as soon as we do not have py2 in the wild anymore
    {% if grains['os'] == 'Debian' and grains['oscodename'] != 'squeeze' or grains['os'] == 'Ubuntu' %}
    hsh_python_packages_salt:
      pkg.installed:
        - pkgs:
          - python-netifaces
          - python3-netifaces
    
    {% elif grains['os'] == 'FreeBSD' %}
    hsh_python_packages_salt:
      pkg.installed:
        - pkgs:
          - net/py-netifaces
          - py27-psutil
    
    {% endif %}