ソースを参照

Merge 3ab819a807 into 570c44b166

pull/484/merge
kartnico 7ヶ月前
コミット
82c8a95b13
コミッターのメールアドレスに関連付けられたアカウントが存在しません
2個のファイルの変更25行の追加0行の削除
  1. +6
    -0
      pillar.example
  2. +19
    -0
      salt/files/master.d/f_defaults.conf

+ 6
- 0
pillar.example ファイルの表示

@@ -161,6 +161,12 @@ salt:
type: runner
cmd: jobs.list_jobs

# Define a master scheduler
schedule:
- update_winrepo:
- function: winrepo.update_git_repos
- hours: 6

# optional: these reactors will be configured on the master
# They override reactors configured in
# 'salt:reactors' or the old 'salt:reactor' parameters

+ 19
- 0
salt/files/master.d/f_defaults.conf ファイルの表示

@@ -124,6 +124,25 @@ module_dirs:
# job cache and executes the scheduler.
{{ get_config('loop_interval', '60') }}

# When using the scheduler at least one schedule needs to be
# defined. The user running the salt master will need read access to the repo.
{% if 'schedule' in cfg_master -%}
{%- do default_keys.append('schedule') %}
schedule:
{%- for schedule in cfg_master['schedule'] %}
{%- if schedule is iterable and schedule is not string %}
{%- for name, children in schedule.items() %}
{{ name }}:
{%- for child in children %}
{%- for key, value in child.items() %}
{{ key }}: {{ value }}
{%- endfor -%}
{%- endfor -%}
{%- endfor -%}
{%- endif -%}
{%- endfor -%}
{%- endif %}

# Set the default outputter used by the salt command. The default is "nested".
{{ get_config('output', 'nested') }}


読み込み中…
キャンセル
保存