Skip to content
Snippets Groups Projects
Select Git revision
  • ee7a9746eb459130fa8a678810b33a9f0f303e87
  • master default
  • fix-remote-url_v4.10.0
  • fix-remote-url_v4.9.1
  • fix-remote-url_v4.8.3
  • fix-remote-url_v4.8.x
  • fix-remote-url_v4.7.x
  • fix-remote-url_v4.6.0
  • fix-remote-urls
9 results

question.php

Blame
  • locale.sls 610 B
    {% from "hshbase/map.jinja" import hshbase with context %}
    
    {% if grains['os'] in ('Debian', 'Ubuntu') and grains['oscodename'] != 'squeeze' %}
    locales:
      pkg.installed
    
    hshbase_locale_system:
      locale.present:
        - name: {{ hshbase.locale.system }}
    
    hshbase_locale_install_system:
      locale.system:
        - name: {{ hshbase.locale.system }}
        - require:
          - locale: hshbase_locale_system
    
    {% for locale in hshbase.locale.present %}
    hshbase_locale_{{ loop.index }}:
      locale.present:
        - name: {{ locale }}
    
    {% endfor %}
    
    {% elif grains['os'] == 'FreeBSD' %}
    
    {# TODO: Should we do that? #}
    
    {% endif %}