integ/config/puppet-modules/openstack/puppet-oslo-17.4.0/debian/patches/0001-Remove-log_dir-from-conf-files.patch
Dan Voiculeasa dab07c3077 Add debian package for puppet-module-oslo-17.4.0
Aligned with Debian Bullseye version puppet-module-oslo-17.4.0-2.

Did build puppet-oslo-17.4.0 + starlingx patches (adapted from
CentOS7). Adapted all patches.
Did build an iso.

Story: 2009101
Task: 43367
Signed-off-by: Dan Voiculeasa <dan.voiculeasa@windriver.com>
Change-Id: I446f24e5c53c9f91a57b6c04a4e96f8726928aa1
2021-09-23 18:41:03 +03:00

40 lines
1.6 KiB
Diff

From f692f32676c5f4cf22abc97598e049578e1e7bf7 Mon Sep 17 00:00:00 2001
From: Dan Voiculeasa <dan.voiculeasa@windriver.com>
Date: Mon, 20 Sep 2021 13:02:19 +0300
Subject: [PATCH 1/2] Remove log_dir from conf files
Adapt 0001-Remove-log_dir-from-conf-files.patch from CentOS.
Signed-off-by: Dan Voiculeasa <dan.voiculeasa@windriver.com>
---
manifests/log.pp | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/manifests/log.pp b/manifests/log.pp
index 96ce363..bb6876f 100644
--- a/manifests/log.pp
+++ b/manifests/log.pp
@@ -27,9 +27,7 @@
# Defaults to $::os_service_default
#
# [*log_dir*]
-# (Optional) Directory where logs should be stored.
-# If set to $::os_service_default, it will not log to any directory.
-# Defaults to $::os_service_default
+# STX: Remove log_dir to ensure services log via syslog
#
# [*watch_log_file*]
# (Optional) Uses logging handler designed to watch file system (boolean value).
@@ -154,7 +152,7 @@ define oslo::log(
'DEFAULT/log_config_append' => { value => $log_config_append },
'DEFAULT/log_date_format' => { value => $log_date_format },
'DEFAULT/log_file' => { value => $log_file },
- 'DEFAULT/log_dir' => { value => $log_dir },
+ 'DEFAULT/log_dir' => { ensure => absent },
'DEFAULT/watch_log_file' => { value => $watch_log_file },
'DEFAULT/use_syslog' => { value => $use_syslog },
'DEFAULT/use_journal' => { value => $use_journal },
--
2.30.0