Skip to content
Snippets Groups Projects
Select Git revision
  • 0c579016c5530a1b808cc930b73cea95c52c3d1c
  • master default protected
  • hsh-2025073100
  • hsh-2025012100
  • hsh-2024111900
  • hsh-2024072400
  • hsh-2024060300
  • hsh-2024012900
  • hsh-2023121100
  • hsh-v1.1.9
  • hsh-v1.1.7
11 results

goemaxima_version

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 %}