Skip to content

Commit

Permalink
fix(config): master_job_cache in saltmaster jinja
Browse files Browse the repository at this point in the history
  • Loading branch information
mdschmitt committed Aug 30, 2024
1 parent f033f90 commit 6e688e0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion salt/files/master.d/f_defaults.conf
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@
#
{{ get_config('cachedir', '/var/cache/salt/master') }}

# Specify the returner to use for the job cache. The job cache will only be
# interacted with from the salt master and therefore does not need to be
# accessible from the minions.
{{ get_config('master_job_cache', 'local_cache') }}

# Directory for custom modules. This directory can contain subdirectories for
# each of Salt's module types such as "runners", "output", "wheel", "modules",
# "states", "returners", etc.
Expand Down Expand Up @@ -1223,7 +1228,7 @@ ext_pillar:
{%- endif %}
{%- endfor -%}
{%- elif pillar[key] is mapping and pillar[key] is not string %}
- {{ key }}:
- {{ key }}:
{%- for parameter in pillar[key] %}
{{ parameter }}: {{pillar[key][parameter]}}
{%- endfor %}
Expand Down

0 comments on commit 6e688e0

Please sign in to comment.