Rename state identifiers
Just for cosmetics
This commit is contained in:
parent
f0cf823177
commit
0846ae41e3
3 changed files with 6 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
|||
include:
|
||||
- logrotate
|
||||
|
||||
logrotate_config:
|
||||
logrotate-config:
|
||||
file.managed:
|
||||
- name: {{ logrotate.conf_file }}
|
||||
- source: salt://logrotate/files/{{ salt['grains.get']('os_family') }}/logrotate.conf
|
||||
|
@ -12,7 +12,7 @@ logrotate_config:
|
|||
- group: {{ salt['pillar.get']('logrotate:config:group', logrotate.group) }}
|
||||
- mode: {{ salt['pillar.get']('logrotate:config:mode', '644') }}
|
||||
|
||||
logrotate_directory:
|
||||
logrotate-directory:
|
||||
file.directory:
|
||||
- name: {{ logrotate.include_dir }}
|
||||
- user: {{ salt['pillar.get']('logrotate:config:user', logrotate.user) }}
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
include:
|
||||
- logrotate
|
||||
|
||||
{% for key,value in jobs.items() %}
|
||||
logrotate_{{key}}:
|
||||
{% for key, value in jobs.items() %}
|
||||
logrotate-{{ key }}:
|
||||
file.managed:
|
||||
- name: {{ logrotate.include_dir }}/{{ key.split("/")[-1] }}
|
||||
- source: salt://logrotate/templates/job.tmpl
|
||||
|
|
|
@ -13,5 +13,5 @@ logrotate:
|
|||
- enable: True
|
||||
- require:
|
||||
- pkg: logrotate-pkg
|
||||
- file: logrotate_config
|
||||
- file: logrotate_directory
|
||||
- file: logrotate-config
|
||||
- file: logrotate-directory
|
||||
|
|
Loading…
Reference in a new issue