0
0
mirror of https://github.com/saltstack-formulas/timezone-formula.git synced 2025-02-19 09:03:52 +01:00
timezone-formula/timezone/map.jinja

20 lines
502 B
Plaintext
Raw Normal View History

{% set map = {
2016-09-28 17:24:00 +02:00
'Debian': {
'path_localtime': '/etc/localtime',
'path_zoneinfo': '/usr/share/zoneinfo/',
'pkgname': 'tzdata',
},
2016-09-29 15:32:32 +02:00
'Redhat': {
'path_localtime': '/etc/localtime',
'path_zoneinfo': '/usr/share/zoneinfo/',
'pkgname': 'tzdata',
},
'Suse': {
'path_localtime': '/etc/localtime',
'path_zoneinfo': '/usr/share/zoneinfo/',
'pkgname': 'timezone',
},
} %}
{% set confmap = map.get(grains.os_family) %}