Hello community,
here is the log from the commit of package installation-images-openSUSE for
openSUSE:Factory checked in at 2014-05-26 10:27:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/installation-images-openSUSE (Old)
and /work/SRC/openSUSE:Factory/.installation-images-openSUSE.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "installation-images-openSUSE"
Changes:
--------
---
/work/SRC/openSUSE:Factory/installation-images-openSUSE/installation-images-openSUSE.changes
2014-05-22 20:39:16.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.installation-images-openSUSE.new/installation-images-openSUSE.changes
2014-05-26 10:27:40.000000000 +0200
@@ -1,0 +2,15 @@
+Fri May 23 14:41:10 CEST 2014 - [email protected]
+
+- get syslogd working again, logging to /var/log/messages
+- change nscd config to not cache passwd & group (bnc #878904)
+- start nscd always (used to be for network installs only - but yast will
+ probably start network anyway later on)
+- 14.98
+
+-------------------------------------------------------------------
+Fri May 23 08:20:35 CEST 2014 - [email protected]
+
+- don't run nscd (bnc #878904)
+- 14.97
+
+-------------------------------------------------------------------
Old:
----
installation-images-14.96.tar.xz
New:
----
installation-images-14.98.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ installation-images-openSUSE.spec ++++++
--- /var/tmp/diff_new_pack.fbREdf/_old 2014-05-26 10:27:41.000000000 +0200
+++ /var/tmp/diff_new_pack.fbREdf/_new 2014-05-26 10:27:41.000000000 +0200
@@ -355,10 +355,10 @@
Summary: Installation Image Files for %theme
License: GPL-2.0+
Group: Metapackages
-Version: 14.96
+Version: 14.98
Release: 0
Provides: installation-images = %version-%release
-Source: installation-images-14.96.tar.xz
+Source: installation-images-14.98.tar.xz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define _binary_payload w.ufdio
++++++ installation-images-14.96.tar.xz -> installation-images-14.98.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.96/VERSION
new/installation-images-14.98/VERSION
--- old/installation-images-14.96/VERSION 2014-05-22 12:51:45.000000000
+0200
+++ new/installation-images-14.98/VERSION 2014-05-23 14:41:00.000000000
+0200
@@ -1 +1 @@
-14.96
+14.98
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.96/changelog
new/installation-images-14.98/changelog
--- old/installation-images-14.96/changelog 2014-05-22 12:51:51.000000000
+0200
+++ new/installation-images-14.98/changelog 2014-05-23 14:41:05.000000000
+0200
@@ -1,4 +1,14 @@
-2014-05-22: HEAD
+2014-05-23: HEAD
+ - Sort out system daemons in installation system.
+ - get syslogd working again, logging to /var/log/messages
+ - change nscd config to not cache passwd & group (bnc #878904)
+ - start nscd always (used to be for network installs only - but yast
will
+ probably start network anyway later on)
+
+2014-05-23: 14.97
+ - don't run nscd (bnc #878904)
+
+2014-05-22: 14.96
- add systemd-sysctl (bnc #879248)
2014-05-22: 14.95
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/installation-images-14.96/data/initrd/etc/syslog.conf
new/installation-images-14.98/data/initrd/etc/syslog.conf
--- old/installation-images-14.96/data/initrd/etc/syslog.conf 2013-11-18
11:49:20.000000000 +0100
+++ new/installation-images-14.98/data/initrd/etc/syslog.conf 2014-05-23
14:28:51.000000000 +0200
@@ -1 +1 @@
-*.* /dev/tty4
+*.* /var/log/messages
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.96/data/root/etc/inst_setup
new/installation-images-14.98/data/root/etc/inst_setup
--- old/installation-images-14.96/data/root/etc/inst_setup 2014-05-21
11:49:38.000000000 +0200
+++ new/installation-images-14.98/data/root/etc/inst_setup 2014-05-23
14:25:18.000000000 +0200
@@ -129,12 +129,15 @@
[ -x "$i" ] && "$i"
done
-# start syslog
-if [ -x /sbin/syslogd ] ; then
- checkproc /sbin/syslogd || {
- echo -n "starting syslogd (logging to /dev/tty4)..."
- sh -c '/sbin/syslogd >&1' 2>/dev/null
- echo " ok"
+# start syslogd
+if [ -x /usr/sbin/syslogd ] ; then
+ checkproc /usr/sbin/syslogd || {
+ echo -n "starting syslogd (logging to /var/log/messages)..."
+ if /usr/sbin/syslogd ; then
+ echo " ok"
+ else
+ echo " failed"
+ fi
}
fi
@@ -150,8 +153,17 @@
}
fi
-# start nscd (bnc #530440)
-[ -f /etc/resolv.conf ] && nscd
+# start nscd (bnc #530440, bnc #878904)
+if [ -x /usr/sbin/nscd ] ; then
+ checkproc /usr/sbin/nscd || {
+ echo -n "starting nscd..."
+ if /usr/sbin/nscd ; then
+ echo " ok"
+ else
+ echo " failed"
+ fi
+ }
+fi
# Update module config.
#
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.96/data/root/etc/syslog.conf
new/installation-images-14.98/data/root/etc/syslog.conf
--- old/installation-images-14.96/data/root/etc/syslog.conf 2013-11-18
11:49:20.000000000 +0100
+++ new/installation-images-14.98/data/root/etc/syslog.conf 1970-01-01
01:00:00.000000000 +0100
@@ -1 +0,0 @@
-*.* /dev/tty4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.96/data/root/etc/syslogd
new/installation-images-14.98/data/root/etc/syslogd
--- old/installation-images-14.96/data/root/etc/syslogd 2013-11-18
11:49:20.000000000 +0100
+++ new/installation-images-14.98/data/root/etc/syslogd 1970-01-01
01:00:00.000000000 +0100
@@ -1,17 +0,0 @@
-#! /bin/sh
-
-# Check if /dev/tty4 is available (might not be the case for installs via
-# serial line).
-
-rm -f /etc/syslog.conf
-if ( test -c /dev/tty4 && > /dev/tty4 ) > /dev/null 2>&1 ; then
- cat <<-blub >>/etc/syslog.conf
- *.* /dev/tty4
- blub
-else
- cat <<-blub >>/etc/syslog.conf
- *.* /dev/null
- blub
-fi
-
-exec -a /sbin/syslogd /sbin/syslogd.bin ${1+"$@"}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.96/data/root/root.file_list
new/installation-images-14.98/data/root/root.file_list
--- old/installation-images-14.96/data/root/root.file_list 2014-05-19
14:46:01.000000000 +0200
+++ new/installation-images-14.98/data/root/root.file_list 2014-05-23
14:29:34.000000000 +0200
@@ -289,8 +289,9 @@
c 755 0 0 /sbin/showconsole
syslogd:
- m /usr/sbin/syslogd /usr/sbin/syslogd.bin
- x etc/syslogd /usr/sbin/syslogd
+ /
+ # we have our own
+ r /etc/syslog.conf
krb5:
/etc
@@ -332,6 +333,8 @@
nscd:
/etc
/usr
+ # turn off passwd & group caching
+ R s/(enable-cache\s+(passwd|group)\s+)yes/$1no/g /etc/nscd.conf
shadow:
/etc
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]