From 1bd21d80e47a66be145911d6be80992dbe0cc7c2 Mon Sep 17 00:00:00 2001 From: Bjoern Teipel Date: Tue, 19 Nov 2019 15:05:56 -0600 Subject: [PATCH] Disable journald-remote playbook The journald-remote playbook is disabled by default until https://github.com/systemd/systemd/issues/2376 has been incorporated in current systemd packages. Change-Id: Ie70729eaad095b52813610b94c6618c84b05c148 Closes-Bug: #1853198 --- playbooks/setup-infrastructure.yml | 5 +++++ .../disable-journald-remote-33d3b43e538786ed.yaml | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 releasenotes/notes/disable-journald-remote-33d3b43e538786ed.yaml diff --git a/playbooks/setup-infrastructure.yml b/playbooks/setup-infrastructure.yml index 8a2e3764c1..4ab7c90633 100644 --- a/playbooks/setup-infrastructure.yml +++ b/playbooks/setup-infrastructure.yml @@ -24,4 +24,9 @@ - import_playbook: etcd-install.yml - import_playbook: ceph-install.yml - import_playbook: rsyslog-install.yml + +# The journald-remote should be disabled by default until +# https://github.com/systemd/systemd/issues/2376 has been +# incorporated in current systemd packages - import_playbook: infra-journal-remote.yml + when: journald_remote_enabled | default (false) | bool diff --git a/releasenotes/notes/disable-journald-remote-33d3b43e538786ed.yaml b/releasenotes/notes/disable-journald-remote-33d3b43e538786ed.yaml new file mode 100644 index 0000000000..cd0e205708 --- /dev/null +++ b/releasenotes/notes/disable-journald-remote-33d3b43e538786ed.yaml @@ -0,0 +1,13 @@ +--- +issues: + - | + The journald-remote is disabled from execution inside setup-infrastructure until + https://github.com/systemd/systemd/issues/2376 has been incorporated in current + systemd packages. + The playbook can be enabled by setting ``journald_remote_enabled`` to ``True`` +upgrade: + - | + The journald-remote playbook is disabled from execution inside + setup-infrastructure until setting ``journald_remote_enabled`` is set to ``True`` + due to https://github.com/systemd/systemd/issues/2376 +