Hello community,
here is the log from the commit of package yast2-installation for
openSUSE:Factory checked in at 2013-07-16 16:30:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old)
and /work/SRC/openSUSE:Factory/.yast2-installation.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-installation"
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes
2013-07-09 20:49:13.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes
2013-07-16 16:30:07.000000000 +0200
@@ -1,0 +2,6 @@
+Thu Jul 11 12:23:36 CEST 2013 - [email protected]
+
+- fixed sshd check (bnc#825160)
+- 2.24.10
+
+-------------------------------------------------------------------
Old:
----
yast2-installation-2.24.9.tar.bz2
New:
----
yast2-installation-2.24.10.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-installation.spec ++++++
--- /var/tmp/diff_new_pack.kO6LUz/_old 2013-07-16 16:30:08.000000000 +0200
+++ /var/tmp/diff_new_pack.kO6LUz/_new 2013-07-16 16:30:08.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-installation
-Version: 2.24.9
+Version: 2.24.10
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ yast2-installation-2.24.9.tar.bz2 -> yast2-installation-2.24.10.tar.bz2
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/Makefile.am
new/yast2-installation-2.24.10/Makefile.am
--- old/yast2-installation-2.24.9/Makefile.am 2013-07-08 10:41:05.000000000
+0200
+++ new/yast2-installation-2.24.10/Makefile.am 2013-07-12 17:31:02.000000000
+0200
@@ -158,14 +158,19 @@
TAGVERSION = $(Y2TOOL) tagversion
-# check if there is no modified files and all commits were pushed
-check-up-to-date:
- if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l`
-gt 0 ]; then \
- (echo "ERROR: Source is not commited and pushed. See `git status`";
false) \
+check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
+ if [ -d $(srcdir)/CVS ]; then \
+ cd $(srcdir) && ! cvs -q -n up 2>/dev/null | grep '^[MCAR] ';\
+ else \
+ cd $(srcdir) && ! LC_ALL=C svn status --show-updates --quiet | grep
-v '^Status against revision' ;\
fi
check-tagversion:
- cd $(srcdir) && $(TAGVERSION) --check >/dev/null; \
+ @if [ -d $(srcdir)/CVS ]; then \
+ cd $(srcdir) && cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\
+ else \
+ cd $(srcdir) && svn cat `$(TAGVERSION) --echourl`/VERSION; \
+ fi >/dev/null; \
[ $$? = 0 ] || ( echo "ERROR: Please run 'tagversion' first"; false )
check-parse-old:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/Makefile.am.common
new/yast2-installation-2.24.10/Makefile.am.common
--- old/yast2-installation-2.24.9/Makefile.am.common 2013-07-08
10:41:05.000000000 +0200
+++ new/yast2-installation-2.24.10/Makefile.am.common 2013-07-12
17:31:02.000000000 +0200
@@ -31,7 +31,7 @@
CHECK_SYNTAX = true
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/Makefile.in
new/yast2-installation-2.24.10/Makefile.in
--- old/yast2-installation-2.24.9/Makefile.in 2013-07-08 10:41:09.000000000
+0200
+++ new/yast2-installation-2.24.10/Makefile.in 2013-07-12 17:31:06.000000000
+0200
@@ -989,14 +989,19 @@
package: check-up-to-date check-tagversion check-textdomain package-local
-# check if there is no modified files and all commits were pushed
-check-up-to-date:
- if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l`
-gt 0 ]; then \
- (echo "ERROR: Source is not commited and pushed. See `git status`";
false) \
+check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
+ if [ -d $(srcdir)/CVS ]; then \
+ cd $(srcdir) && ! cvs -q -n up 2>/dev/null | grep '^[MCAR] ';\
+ else \
+ cd $(srcdir) && ! LC_ALL=C svn status --show-updates --quiet | grep
-v '^Status against revision' ;\
fi
check-tagversion:
- cd $(srcdir) && $(TAGVERSION) --check >/dev/null; \
+ @if [ -d $(srcdir)/CVS ]; then \
+ cd $(srcdir) && cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\
+ else \
+ cd $(srcdir) && svn cat `$(TAGVERSION) --echourl`/VERSION; \
+ fi >/dev/null; \
[ $$? = 0 ] || ( echo "ERROR: Please run 'tagversion' first"; false )
check-parse-old:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/VERSION
new/yast2-installation-2.24.10/VERSION
--- old/yast2-installation-2.24.9/VERSION 2013-07-08 10:40:55.000000000
+0200
+++ new/yast2-installation-2.24.10/VERSION 2013-07-12 17:30:54.000000000
+0200
@@ -1 +1 @@
-2.24.9
+2.24.10
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/configure
new/yast2-installation-2.24.10/configure
--- old/yast2-installation-2.24.9/configure 2013-07-08 10:41:08.000000000
+0200
+++ new/yast2-installation-2.24.10/configure 2013-07-12 17:31:05.000000000
+0200
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-installation 2.24.9.
+# Generated by GNU Autoconf 2.69 for yast2-installation 2.24.10.
#
# Report bugs to <http://bugs.opensuse.org/>.
#
@@ -579,8 +579,8 @@
# Identity of this package.
PACKAGE_NAME='yast2-installation'
PACKAGE_TARNAME='yast2-installation'
-PACKAGE_VERSION='2.24.9'
-PACKAGE_STRING='yast2-installation 2.24.9'
+PACKAGE_VERSION='2.24.10'
+PACKAGE_STRING='yast2-installation 2.24.10'
PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
PACKAGE_URL=''
@@ -1258,7 +1258,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures yast2-installation 2.24.9 to adapt to many kinds of
systems.
+\`configure' configures yast2-installation 2.24.10 to adapt to many kinds of
systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1330,7 +1330,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of yast2-installation 2.24.9:";;
+ short | recursive ) echo "Configuration of yast2-installation 2.24.10:";;
esac
cat <<\_ACEOF
@@ -1410,7 +1410,7 @@
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-yast2-installation configure 2.24.9
+yast2-installation configure 2.24.10
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1427,7 +1427,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by yast2-installation $as_me 2.24.9, which was
+It was created by yast2-installation $as_me 2.24.10, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -2366,7 +2366,7 @@
# Define the identity of the package.
PACKAGE='yast2-installation'
- VERSION='2.24.9'
+ VERSION='2.24.10'
cat >>confdefs.h <<_ACEOF
@@ -2489,7 +2489,7 @@
-VERSION="2.24.9"
+VERSION="2.24.10"
RPMNAME="yast2-installation"
MAINTAINER="Jiří Suchomel <[email protected]>"
@@ -3648,7 +3648,7 @@
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by yast2-installation $as_me 2.24.9, which was
+This file was extended by yast2-installation $as_me 2.24.10, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -3701,7 +3701,7 @@
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //;
s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-yast2-installation config.status 2.24.9
+yast2-installation config.status 2.24.10
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/configure.in
new/yast2-installation-2.24.10/configure.in
--- old/yast2-installation-2.24.9/configure.in 2013-07-08 10:41:05.000000000
+0200
+++ new/yast2-installation-2.24.10/configure.in 2013-07-12 17:31:02.000000000
+0200
@@ -1,9 +1,9 @@
dnl configure.in for yast2-installation
dnl
-dnl -- This file is generated by y2autoconf 2.24.1 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.23.2 - DO NOT EDIT! --
dnl (edit configure.in.in instead)
-AC_INIT(yast2-installation, 2.24.9, http://bugs.opensuse.org/,
yast2-installation)
+AC_INIT(yast2-installation, 2.24.10, http://bugs.opensuse.org/,
yast2-installation)
dnl Check for presence of file 'RPMNAME'
AC_CONFIG_SRCDIR([RPMNAME])
@@ -18,7 +18,7 @@
AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
dnl Important YaST2 variables
-VERSION="2.24.9"
+VERSION="2.24.10"
RPMNAME="yast2-installation"
MAINTAINER="Jiří Suchomel <[email protected]>"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/control/Makefile.in
new/yast2-installation-2.24.10/control/Makefile.in
--- old/yast2-installation-2.24.9/control/Makefile.in 2013-07-08
10:41:09.000000000 +0200
+++ new/yast2-installation-2.24.10/control/Makefile.in 2013-07-12
17:31:06.000000000 +0200
@@ -734,7 +734,7 @@
dist-hook: check-syntax
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-installation-2.24.9/control/docs/examples/Makefile.in
new/yast2-installation-2.24.10/control/docs/examples/Makefile.in
--- old/yast2-installation-2.24.9/control/docs/examples/Makefile.in
2013-07-08 10:41:09.000000000 +0200
+++ new/yast2-installation-2.24.10/control/docs/examples/Makefile.in
2013-07-12 17:31:06.000000000 +0200
@@ -474,7 +474,7 @@
dist-hook: check-syntax
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-installation-2.24.9/control/examples/Makefile.in
new/yast2-installation-2.24.10/control/examples/Makefile.in
--- old/yast2-installation-2.24.9/control/examples/Makefile.in 2013-07-08
10:41:09.000000000 +0200
+++ new/yast2-installation-2.24.10/control/examples/Makefile.in 2013-07-12
17:31:06.000000000 +0200
@@ -477,7 +477,7 @@
dist-hook: check-syntax
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-installation-2.24.9/doc/features/examples/Makefile.in
new/yast2-installation-2.24.10/doc/features/examples/Makefile.in
--- old/yast2-installation-2.24.9/doc/features/examples/Makefile.in
2013-07-08 10:41:09.000000000 +0200
+++ new/yast2-installation-2.24.10/doc/features/examples/Makefile.in
2013-07-12 17:31:07.000000000 +0200
@@ -474,7 +474,7 @@
dist-hook: check-syntax
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/src/clients/Makefile.in
new/yast2-installation-2.24.10/src/clients/Makefile.in
--- old/yast2-installation-2.24.9/src/clients/Makefile.in 2013-07-08
10:41:09.000000000 +0200
+++ new/yast2-installation-2.24.10/src/clients/Makefile.in 2013-07-12
17:31:07.000000000 +0200
@@ -501,7 +501,7 @@
dist-hook: check-syntax
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/src/config/Makefile.in
new/yast2-installation-2.24.10/src/config/Makefile.in
--- old/yast2-installation-2.24.9/src/config/Makefile.in 2013-07-08
10:41:10.000000000 +0200
+++ new/yast2-installation-2.24.10/src/config/Makefile.in 2013-07-12
17:31:07.000000000 +0200
@@ -549,7 +549,7 @@
dist-hook: check-syntax
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-installation-2.24.9/src/inst_finish/Makefile.in
new/yast2-installation-2.24.10/src/inst_finish/Makefile.in
--- old/yast2-installation-2.24.9/src/inst_finish/Makefile.in 2013-07-08
10:41:10.000000000 +0200
+++ new/yast2-installation-2.24.10/src/inst_finish/Makefile.in 2013-07-12
17:31:07.000000000 +0200
@@ -501,7 +501,7 @@
dist-hook: check-syntax
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/src/modules/Makefile.in
new/yast2-installation-2.24.10/src/modules/Makefile.in
--- old/yast2-installation-2.24.9/src/modules/Makefile.in 2013-07-08
10:41:10.000000000 +0200
+++ new/yast2-installation-2.24.10/src/modules/Makefile.in 2013-07-12
17:31:07.000000000 +0200
@@ -496,7 +496,7 @@
dist-hook: check-syntax
check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
- @if test "$(filter %.ycp,client_DATA)"; then \
+ @if test "$(client_DATA)"; then \
if $(CHECK_SYNTAX); then \
TO_CHECK="$(filter %.ycp,$^)"; \
echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-installation-2.24.9/startup/YaST2.call
new/yast2-installation-2.24.10/startup/YaST2.call
--- old/yast2-installation-2.24.9/startup/YaST2.call 2013-06-19
11:55:54.000000000 +0200
+++ new/yast2-installation-2.24.10/startup/YaST2.call 2013-07-12
17:30:54.000000000 +0200
@@ -509,7 +509,7 @@
# 3.2) prequalification checks for SSH
#---------------------------------------------
# 3.2.1) Check for SSH daemon
-if ! systemctl --quiet is-active sshd ; then
+if ! /usr/sbin/rcsshd status > /dev/null 2>&1 ; then
log "\tNo SSH daemon running -> Medium SSH disabled"
MEDIUM[1]=0
fi
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]