paulbsd-salt/states/provision/init.sls

24 lines
535 B
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
---
{%- from "provision/map.jinja" import specs with context %}
schedule_highstate:
schedule.present:
- name: schedule_highstate
- function: state.highstate
- minutes: 30
2020-09-12 17:41:35 +02:00
- run_on_start: false
2020-07-10 00:58:55 +02:00
schedule_saltutil_clear_cache:
schedule.present:
- name: schedule_saltutil_clear_cache
- function: saltutil.clear_cache
2021-10-02 12:39:51 +02:00
- days: 7
2020-09-12 17:41:35 +02:00
- run_on_start: false
2020-07-10 00:58:55 +02:00
2022-12-24 17:51:22 +01:00
{% for key, value in specs.items() %}
grains-{{ key }}:
2020-07-10 00:58:55 +02:00
grains.present:
- name: {{ key }}
2022-12-24 17:51:22 +01:00
- value: {{ value }}
2020-09-12 17:41:35 +02:00
- force: true
2020-07-10 00:58:55 +02:00
{% endfor %}