Hello community,
here is the log from the commit of package systemd-default-settings for
openSUSE:Factory checked in at 2020-11-23 16:39:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/systemd-default-settings (Old)
and /work/SRC/openSUSE:Factory/.systemd-default-settings.new.5913 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "systemd-default-settings"
Mon Nov 23 16:39:35 2020 rev:3 rq:849695 version:0.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/systemd-default-settings/systemd-default-settings.changes
2020-11-02 09:37:56.149468434 +0100
+++
/work/SRC/openSUSE:Factory/.systemd-default-settings.new.5913/systemd-default-settings.changes
2020-11-23 19:06:12.930304423 +0100
@@ -1,0 +2,15 @@
+Thu Nov 19 14:29:34 UTC 2020 - Franck Bui <[email protected]>
+
+- Issue a daemon-reload in %post of the main package
+
+-------------------------------------------------------------------
+Thu Nov 19 06:26:27 UTC 2020 - Franck Bui <[email protected]>
+
+- Import 0.5
+
+ 0c5e241 SLE: turn off RemoveIPC by default for logind (fate#320125)
+ cb6914f SLE: restore ProtectHostname=no for udevd (bsc#1178374)
+ 7e332a6 Add a header in all each drop-ins
+ 465e1c7 Makefile: simplify 'archive' target
+
+-------------------------------------------------------------------
@@ -4 +19,4 @@
-- rpm file lists are now generated from the spec file.
+- Import 0.4
+
+ a97bb54 Makefile: don't generate the rpm file lists anymore
+ 5473da6 Makefile: introduce 'archive' target
Old:
----
systemd-default-settings-0.4.tar.gz
New:
----
systemd-default-settings-0.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ systemd-default-settings.spec ++++++
--- /var/tmp/diff_new_pack.BwGNof/_old 2020-11-23 19:06:13.430304911 +0100
+++ /var/tmp/diff_new_pack.BwGNof/_new 2020-11-23 19:06:13.430304911 +0100
@@ -18,7 +18,7 @@
Name: systemd-default-settings
URL: https://github.com/openSUSE/systemd-default-settings
-Version: 0.4
+Version: 0.5
Release: 0
Summary: Customization of systemd default settings for SUSE
distributions
License: GPL-2.0-or-later
@@ -84,6 +84,13 @@
find %{buildroot} -name 25-defaults-SLE.conf -printf "/%%P\n" >SLE.list
find %{buildroot} -name 25-defaults-openSUSE.conf -printf "/%%P\n"
>openSUSE.list
+%post
+# Reloading PID1 is probably not enough as some changes will require
+# service restarts or even a reboot. But it might be useful in a few
+# cases so...
+[ -x /usr/bin/systemctl ] &&
+ /usr/bin/systemctl systemctl daemon-reload || :
+
%files -f SUSE.list
%defattr(-,root,root)
++++++ systemd-default-settings-0.4.tar.gz ->
systemd-default-settings-0.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/systemd-default-settings-0.4/Makefile
new/systemd-default-settings-0.5/Makefile
--- old/systemd-default-settings-0.4/Makefile 2020-10-27 15:56:48.000000000
+0100
+++ new/systemd-default-settings-0.5/Makefile 2020-11-19 07:22:31.000000000
+0100
@@ -1,4 +1,4 @@
-VERSION ?= $(shell git describe --always)
+NAME = systemd-default-settings
.PHONY: archive clean
@@ -7,10 +7,9 @@
install:
tar -c usr/ | tar -x -C${DESTDIR}/
-archive: systemd-default-settings-$(VERSION).tar.gz
-
-systemd-default-settings-$(VERSION).tar.gz:
- git archive --format=tgz --prefix=systemd-default-settings-$(VERSION)/
HEAD >$@
+archive:
+ @ver=$$(git describe --always) && \
+ git archive --format=tgz --prefix=$(NAME)-$$ver/ HEAD
>$(NAME)-$$ver.tar.gz
clean:
rm -f *.tar.gz
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/journald.conf.d/20-defaults-SUSE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/journald.conf.d/20-defaults-SUSE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/journald.conf.d/20-defaults-SUSE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/journald.conf.d/20-defaults-SUSE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,3 +1,11 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Journal]
# Prevent journald from starting auditd during boot (bsc#984034).
Audit=no
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/logind.conf.d/25-defaults-SLE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/logind.conf.d/25-defaults-SLE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/logind.conf.d/25-defaults-SLE.conf
1970-01-01 01:00:00.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/logind.conf.d/25-defaults-SLE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -0,0 +1,3 @@
+[Login]
+# fate#320125
+RemoveIPC=no
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/system/[email protected]/20-defaults-SUSE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/system/[email protected]/20-defaults-SUSE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/system/[email protected]/20-defaults-SUSE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/system/[email protected]/20-defaults-SUSE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,3 +1,11 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Service]
# ensure tty1 isn't cleared (bnc#804158)
TTYVTDisallocate=no
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/system/systemd-logind.service.d/20-defaults-SUSE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/system/systemd-logind.service.d/20-defaults-SUSE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/system/systemd-logind.service.d/20-defaults-SUSE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/system/systemd-logind.service.d/20-defaults-SUSE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,4 +1,12 @@
-# To keep backward compat with system using NIS, turn off the
-# IP sandboxing.
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Service]
+# To keep backward compat with system using NIS, turn off the IP
+# sandboxing.
IPAddressDeny=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/system/user-.slice.d/25-defaults-SLE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/system/user-.slice.d/25-defaults-SLE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/system/user-.slice.d/25-defaults-SLE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/system/user-.slice.d/25-defaults-SLE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,3 +1,11 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Slice]
# Disable default TasksMax limit (SLE-10123)
TasksMax=infinity
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/system/[email protected]/20-defaults-SUSE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/system/[email protected]/20-defaults-SUSE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/system/[email protected]/20-defaults-SUSE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/system/[email protected]/20-defaults-SUSE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,3 +1,11 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Service]
# Delegation for privileged services is supposed to enable all or
# listed resource controllers, which would incur performance penalties
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/system.conf.d/20-defaults-SUSE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/system.conf.d/20-defaults-SUSE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/system.conf.d/20-defaults-SUSE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/system.conf.d/20-defaults-SUSE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,3 +1,11 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Manager]
# Memory accounting incurs performance penalties. Let's keep it
# disabled by default since the actual use case for enabling it is not
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/system.conf.d/25-defaults-SLE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/system.conf.d/25-defaults-SLE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/system.conf.d/25-defaults-SLE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/system.conf.d/25-defaults-SLE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,3 +1,11 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Manager]
# Disable default TasksMax limit (jsc#SLE-10123)
DefaultTasksMax=infinity
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/systemd-udevd.service.d/25-defaults-SLE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/systemd-udevd.service.d/25-defaults-SLE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/systemd-udevd.service.d/25-defaults-SLE.conf
1970-01-01 01:00:00.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/systemd-udevd.service.d/25-defaults-SLE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -0,0 +1,12 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
+[Service]
+# Some stuff spawned by systemd-udevd need to access to the hostname
+# (bsc#1178374)
+ProtectHostname=no
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/timesyncd.conf.d/25-defaults-SLE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/timesyncd.conf.d/25-defaults-SLE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/timesyncd.conf.d/25-defaults-SLE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/timesyncd.conf.d/25-defaults-SLE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,2 +1,10 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Time]
FallbackNTP=0.suse.pool.ntp.org 1.suse.pool.ntp.org 2.suse.pool.ntp.org
3.suse.pool.ntp.org
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemd-default-settings-0.4/usr/lib/systemd/timesyncd.conf.d/25-defaults-openSUSE.conf
new/systemd-default-settings-0.5/usr/lib/systemd/timesyncd.conf.d/25-defaults-openSUSE.conf
---
old/systemd-default-settings-0.4/usr/lib/systemd/timesyncd.conf.d/25-defaults-openSUSE.conf
2020-10-27 15:56:48.000000000 +0100
+++
new/systemd-default-settings-0.5/usr/lib/systemd/timesyncd.conf.d/25-defaults-openSUSE.conf
2020-11-19 07:22:31.000000000 +0100
@@ -1,2 +1,10 @@
+# This drop-in contains specific defaults used by SUSE distributions.
+#
+# Do not edit this file, it will be overwritten on update.
+#
+# If you need to override one of the options, please create your own
+# drop-in in /etc/systemd with a higher priority (preferably greater
+# than 70).
+
[Time]
FallbackNTP=0.opensuse.pool.ntp.org 1.opensuse.pool.ntp.org
2.opensuse.pool.ntp.org 3.opensuse.pool.ntp.org
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives:
https://lists.opensuse.org/archives/list/[email protected]