Saltstack Official Chrony Formula
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- # -*- coding: utf-8 -*-
- # vim: ft=sls
-
- {#- Get the `tplroot` from `tpldir` #}
- {%- set tplroot = tpldir.split('/')[0] %}
- {%- set sls_config_clean = tplroot ~ '.config.clean' %}
- {%- from tplroot ~ "/map.jinja" import chrony with context %}
-
- include:
- - {{ sls_config_clean }}
-
- chrony-package-clean-pkg-removed:
- pkg.removed:
- - name: {{ chrony.pkg }}
- - require:
- - sls: {{ sls_config_clean }}
|