|
1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # vim: ft=sls
-
- {#- Get the `tplroot` from `tpldir` #}
- {%- set tplroot = tpldir.split('/')[0] %}
- {%- from tplroot ~ "/ng/map.jinja" import apt_cacher_ng with context %}
-
- {%- if grains['os_family'] == 'Debian' %}
- {%- if apt_cacher_ng.server_address %}
-
- apt-cacher-ng/config/client_config:
- file.managed:
- - name: {{ apt_cacher_ng.client_config }}
- - user: root
- - group: root
- - mode: '644'
- - source: salt://apt-cacher/ng/files/client.conf
- - template: jinja
- {%- endif %}
- {%- endif %}
|