Hello community, here is the log from the commit of package cloud-init for openSUSE:Factory checked in at 2018-02-14 10:52:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cloud-init (Old) and /work/SRC/openSUSE:Factory/.cloud-init.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cloud-init" Wed Feb 14 10:52:26 2018 rev:47 rq:576385 version:17.2 Changes: -------- --- /work/SRC/openSUSE:Factory/cloud-init/cloud-init.changes 2018-01-30 15:46:09.961668525 +0100 +++ /work/SRC/openSUSE:Factory/.cloud-init.new/cloud-init.changes 2018-02-14 10:52:27.395881534 +0100 @@ -1,0 +2,6 @@ +Tue Feb 13 19:39:50 UTC 2018 - [email protected] + +- Fix logfile permission settings (bsc#1080595) + + Add 0001-Set-syslog_fix_perms-for-SUSE-distro-addresses-bsc-1.patch + +------------------------------------------------------------------- New: ---- 0001-Set-syslog_fix_perms-for-SUSE-distro-addresses-bsc-1.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cloud-init.spec ++++++ --- /var/tmp/diff_new_pack.pG5Wir/_old 2018-02-14 10:52:28.171853604 +0100 +++ /var/tmp/diff_new_pack.pG5Wir/_new 2018-02-14 10:52:28.171853604 +0100 @@ -55,6 +55,9 @@ Patch41: cloud-init-no-python-linux-dist.patch # Disable OVF tests Patch42: cloud-init-skip-ovf-tests.patch +# FIXME do not use the default user:groups for log file permission settings +# Proposed for merging upstream +Patch43: 0001-Set-syslog_fix_perms-for-SUSE-distro-addresses-bsc-1.patch BuildRequires: fdupes BuildRequires: filesystem # pkg-config is needed to find correct systemd unit dir @@ -200,6 +203,7 @@ %patch40 -p1 %patch41 %patch42 +%patch43 -p1 %build %if 0%{?suse_version} && 0%{?suse_version} <= 1315 ++++++ 0001-Set-syslog_fix_perms-for-SUSE-distro-addresses-bsc-1.patch ++++++ >From 28167e24ae4a0e744103a71061474836dc6a9559 Mon Sep 17 00:00:00 2001 From: Robert Schweikert <[email protected]> Date: Tue, 13 Feb 2018 14:28:51 -0500 Subject: [PATCH] - Set syslog_fix_perms for SUSE distro, addresses bsc#1080595 + Avoid using the default configuration for syslog ownership the neither "adm" nor "wheel" groups are part of the default config on SUSE distros --- config/cloud.cfg.tmpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/cloud.cfg.tmpl b/config/cloud.cfg.tmpl index 32de9c9b..3ab681ee 100644 --- a/config/cloud.cfg.tmpl +++ b/config/cloud.cfg.tmpl @@ -5,6 +5,9 @@ {% if variant in ["freebsd"] %} syslog_fix_perms: root:wheel {% endif %} +{% if variant in ["suse"] %} +syslog_fix_perms: root:adm +{% endif %} # A set of users which may be applied and/or used by various modules # when a 'default' entry is found it will reference the 'default_user' # from the distro configuration specified below -- 2.13.6
