Saltstack Official Linux 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.
|
- {%- from "linux/map.jinja" import system with context -%}
-
- {%- if system.atop.enabled %}
- job:
- atop:
- - files:
- - {{ system.atop.logpath }}/atop*
- - {{ system.atop.logpath }}/{{ system.atop.outfile }}
- options:
- - olddir {{ system.atop.logpath }}/old
- - compress
- - delaycompress
- - missingok
- - notifempty
- - rotate: 10
- - daily
- - minsize: 20M
- - maxsize: 500M
- - postrotate: "if ! service atop status > /dev/null; then service atop restart > /dev/null; fi"
- {%- endif %}
|