Skip to content
Snippets Groups Projects
Select Git revision
  • 78decc2133bd64e641608858fa3a7412ee331809
  • master default protected
  • hsh_v4.5
  • hsh_v4-4
  • hsh_v4.4
  • hsh_v4.3
  • hsh_v4.1.x
  • hsh_v4.2
  • hsh_v4.1
  • hsh_v3.11
  • hsh_3.10
  • v3.11-r2-hsh
  • v3.11-r2
  • v3.11-r1
  • v3.10-r1
  • v3.9-r1
  • v3.8-r2
  • v3.8-r1
  • v3.7-r1
19 results

restore.php

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