ソースを参照

Added journal settings

pull/210/head
Marek Knappe 5年前
コミット
58cd6b3138
4個のファイルの変更43行の追加1行の削除
  1. +12
    -0
      README.rst
  2. +6
    -0
      linux/files/journal.conf
  3. +25
    -0
      linux/system/journal.sls
  4. +0
    -1
      tests/pillar/system.sls

+ 12
- 0
README.rst ファイルの表示

@@ -430,6 +430,18 @@ Systemd settings:
DefaultLimitCPU: 2
DefaultLimitNPROC: 4

Systemd journal settings:

.. code-block:: yaml

linux:
system:
...
systemd:
journal:
SystemMaxUse: "50M"
RuntimeMaxFiles: "100"
Ensure presence of directory:

.. code-block:: yaml

+ 6
- 0
linux/files/journal.conf ファイルの表示

@@ -0,0 +1,6 @@
{%- from "linux/map.jinja" import system with context -%}
#This file is managed by salt
[Journal]
{%- for option, value in settings.items() %}
{{ option }}={{ value }}
{%- endfor -%}

+ 25
- 0
linux/system/journal.sls ファイルの表示

@@ -0,0 +1,25 @@
{%- from "linux/map.jinja" import system with context %}
{%- if system.enabled and grains.get('init', None) == 'systemd' %}

{%- if system.systemd.journal is defined %}

linux_systemd_system_config:
file.managed:
- name: /etc/systemd/journald.conf.d/90-salt.conf
- source: salt://linux/files/journal.conf
- template: jinja
- makedirs: True
- defaults:
settings: {{ system.systemd.journal }}
- watch_in:
- module: linux_journal_systemd_reload

linux_journal_systemd_reload:
module.wait:
- name: service.restart
- m_name: systemd-journald
- require:
- module: service.systemctl_reload

{%- endif %}
{%- endif %}

+ 0
- 1
tests/pillar/system.sls ファイルの表示

@@ -458,7 +458,6 @@ linux:
- host1
- host2
- .local

# pillars for netconsole setup
netconsole:
enabled: true

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