Hello community, here is the log from the commit of package yast2 checked in at Tue Sep 30 10:06:34 CEST 2008. -------- --- yast2/yast2.changes 2008-09-29 14:34:02.000000000 +0200 +++ /mounts/work_src_done/STABLE/yast2/yast2.changes 2008-09-30 10:01:08.706841000 +0200 @@ -1,0 +2,7 @@ +Mon Sep 29 16:52:39 CEST 2008 - visnov@suse.cz + +- updated man page with exit codes +- save also zypp history in save_y2logs +- 2.17.35 + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- yast2-2.17.34.tar.bz2 New: ---- yast2-2.17.35.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2.spec ++++++ --- /var/tmp/diff_new_pack.N22591/_old 2008-09-30 10:05:59.000000000 +0200 +++ /var/tmp/diff_new_pack.N22591/_new 2008-09-30 10:05:59.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2 (Version 2.17.34) +# spec file for package yast2 (Version 2.17.35) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -19,12 +19,12 @@ Name: yast2 -Version: 2.17.34 +Version: 2.17.35 Release: 1 License: GPL v2 or later Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-2.17.34.tar.bz2 +Source0: yast2-2.17.35.tar.bz2 Prefix: /usr Source1: yast2-rpmlintrc BuildRequires: perl-XML-Writer update-desktop-files yast2-devtools yast2-perl-bindings yast2-testsuite @@ -147,7 +147,7 @@ Steffen Winterfeldt <snwint@suse.de> %prep -%setup -n yast2-2.17.34 +%setup -n yast2-2.17.35 %build %{prefix}/bin/y2tool y2autoconf @@ -250,7 +250,12 @@ %doc %{prefix}/share/doc/packages/yast2/system %doc %{prefix}/share/doc/packages/yast2/types %doc %{prefix}/share/doc/packages/yast2/wizard + %changelog +* Mon Sep 29 2008 visnov@suse.cz +- updated man page with exit codes +- save also zypp history in save_y2logs +- 2.17.35 * Mon Sep 29 2008 tgoettlicher@suse.de - Fixed bnc #418443: Yast modules windows have no title - 2.17.34 ++++++ yast2-2.17.34.tar.bz2 -> yast2-2.17.35.tar.bz2 ++++++ ++++ 1725 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-2.17.34/configure.in new/yast2-2.17.35/configure.in --- old/yast2-2.17.34/configure.in 2008-08-05 15:51:48.000000000 +0200 +++ new/yast2-2.17.35/configure.in 2008-09-30 09:58:14.000000000 +0200 @@ -1,9 +1,9 @@ dnl configure.in for yast2 dnl -dnl -- This file is generated by y2autoconf 2.16.7 - DO NOT EDIT! -- +dnl -- This file is generated by y2autoconf 2.17.6 - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(yast2, 2.17.9, http://bugs.opensuse.org/, yast2) +AC_INIT(yast2, 2.17.35, http://bugs.opensuse.org/, yast2) 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.17.9" +VERSION="2.17.35" RPMNAME="yast2" MAINTAINER="Jiri Srain <jsrain@suse.cz>" @@ -170,8 +170,21 @@ fi +AC_MSG_CHECKING([for ifcfg location]) +# fallback, default on openSUSE +IFCFG_DIR=/etc/sysconfig/network +for TRY in /etc/sysconfig/network-scripts; do + if test -d $TRY; then + IFCFG_DIR=$TRY + break + fi +done +AC_SUBST([IFCFG_DIR]) +AC_MSG_RESULT([$IFCFG_DIR]) + # also done via makefile -AC_CONFIG_FILES(./library/modules/Version.ycp) +AC_CONFIG_FILES(library/modules/Version.ycp +library/network/agents/network.scr) AC_CONFIG_FILES(Makefile data/Makefile doc/autodocs/Makefile doc/examples/Makefile diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-2.17.34/doc/yast2.8 new/yast2-2.17.35/doc/yast2.8 --- old/yast2-2.17.34/doc/yast2.8 2008-07-18 10:11:21.000000000 +0200 +++ new/yast2-2.17.35/doc/yast2.8 2008-09-30 09:57:49.000000000 +0200 @@ -179,6 +179,24 @@ \" Please report bugs at http://www.suse.de/feedback .\" .\" +.SH "EXIT STATUS" +.TP +.if !'po4a'hide' .B 0 +Successful program execution. +.TP +.if !'po4a'hide' .B 1 +Too few arguments. +.TP +.if !'po4a'hide' .B 5 +Error in arguments. +.TP +.if !'po4a'hide' .B 16 +Generic module error. +.TP +.if !'po4a'hide' .B > 16 +Module specific error codes. +.\" +.\" .SH AUTHOR .nf Michal Svec <msvec@suse.cz> - manual page diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-2.17.34/doc/yast.8 new/yast2-2.17.35/doc/yast.8 --- old/yast2-2.17.34/doc/yast.8 2008-07-18 10:11:21.000000000 +0200 +++ new/yast2-2.17.35/doc/yast.8 2008-09-30 09:57:49.000000000 +0200 @@ -179,6 +179,24 @@ \" Please report bugs at http://www.suse.de/feedback .\" .\" +.SH "EXIT STATUS" +.TP +.if !'po4a'hide' .B 0 +Successful program execution. +.TP +.if !'po4a'hide' .B 1 +Too few arguments. +.TP +.if !'po4a'hide' .B 5 +Error in arguments. +.TP +.if !'po4a'hide' .B 16 +Generic module error. +.TP +.if !'po4a'hide' .B > 16 +Module specific error codes. +.\" +.\" .SH AUTHOR .nf Michal Svec <msvec@suse.cz> - manual page diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-2.17.34/library/modules/Version.ycp new/yast2-2.17.35/library/modules/Version.ycp --- old/yast2-2.17.34/library/modules/Version.ycp 2008-09-29 14:31:04.000000000 +0200 +++ new/yast2-2.17.35/library/modules/Version.ycp 2008-09-30 09:58:32.000000000 +0200 @@ -20,7 +20,7 @@ /** * Version of the yast2 package */ -global string yast2 = "2.17.34"; +global string yast2 = "2.17.35"; /* EOF */ } diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-2.17.34/library/network/agents/network.scr.in new/yast2-2.17.35/library/network/agents/network.scr.in --- old/yast2-2.17.34/library/network/agents/network.scr.in 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-2.17.35/library/network/agents/network.scr.in 2008-09-30 09:57:41.000000000 +0200 @@ -0,0 +1,44 @@ +// @configure_input@ +/** + * File: network.scr + * Summary: Agent for @IFCFG_DIR@/ifcfg-* + * Author: Michal Svec <msvec@suse.cz> + * Modified: Wenji Huang <wenji.huang@oracle.com> + * Access: read / write + * See: sysconfig.rpm + * + * General syntax: + * # comment0 + * VAR1=val1 # comment1 + * VAR2="val 2 #blah" # comment2 + * VAR3='val3 x #blah2' # comment3 + * + * $Id: network.scr.in 49978 2008-08-12 10:45:02Z mvidner $ + * + * <p>Reads/writes <tt>@IFCFG_DIR@/ifcfg-*</tt>. For more details + * see its own documentation.</p> + */ +.network + +`ag_ini( + `IniAgent( [ "@IFCFG_DIR@/ifcfg-*" ], + $[ + /* values at the top level, allow comments after value */ + "options" : [ "global_values", "comments_last" ], + /* empty lines, comments after value and whole-line comments */ + "comments" : [ "^[ \t]*$", "[ \t]*#.*$", "^[ \t]*#.*$" ], + /* matching rules */ + "params" : [ + /* VAR1="val1 'bal x" */ + $[ "match" : [ "^[ \t]*([a-zA-Z_][a-zA-Z0-9_]*)=\"([^\"`\\$]*)\"", "%s='%s'" ] ], + /* VAR1='val1 xxx" xx' */ + $[ "match" : [ "^[ \t]*([a-zA-Z_][a-zA-Z0-9_]*)='([^']*)'", "%s='%s'" ] ], + /* VAR1=val1 */ + $[ "match" : [ "^[ \t]*([a-zA-Z_][a-zA-Z0-9_]*)=([^ \t\"$`'\\#]*)", "%s='%s'" ] ], + ], + /* matching rules */ + "rewrite" : [ + [ "@IFCFG_DIR@/ifcfg-(.*)", "@IFCFG_DIR@/ifcfg-%s" ], + ], + ] +)) diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-2.17.34/library/network/src/yast2-services-translations.ycp new/yast2-2.17.35/library/network/src/yast2-services-translations.ycp --- old/yast2-2.17.34/library/network/src/yast2-services-translations.ycp 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-2.17.35/library/network/src/yast2-services-translations.ycp 2008-09-30 09:57:42.000000000 +0200 @@ -0,0 +1,295 @@ +{ + /** + * This file contains only translations for + * FATE #300687: Ports for SuSEfirewall added via packages + * + * Translations are grabbed when 'make pot' is called. + */ + + textdomain "firewall-services"; + + string tmpstring = nil; + + // TRANSLATORS: Name of Service (File name: apache2, RPM: apache2), can be used as check box, item in multiple selection box... + tmpstring = _("Apache 2"); + + // TRANSLATORS: Description of a Service (File name: apache2, RPM: apache2), used as a common label or an item in table + tmpstring = _("Opens ports for Apache Web Server."); + + // TRANSLATORS: Name of Service (File name: apache2-ssl, RPM: apache2), can be used as check box, item in multiple selection box... + tmpstring = _("Apache 2"); + + // TRANSLATORS: Description of a Service (File name: apache2-ssl, RPM: apache2), used as a common label or an item in table + tmpstring = _("Opens ports for Apache Web Server."); + + // TRANSLATORS: Name of Service (File name: avahi, RPM: avahi), can be used as check box, item in multiple selection box... + tmpstring = _("Zeroconf/Bonjour Multicast DNS"); + + // TRANSLATORS: Description of a Service (File name: avahi, RPM: avahi), used as a common label or an item in table + tmpstring = _("Zeroconf/Bonjour Multicast DNS (mDNS) ports for Service Discovery (DNS-SD)"); + + // TRANSLATORS: Name of Service (File name: bacula-dir, RPM: bacula-server), can be used as check box, item in multiple selection box... + tmpstring = _("Bacula Director"); + + // TRANSLATORS: Description of a Service (File name: bacula-dir, RPM: bacula-server), used as a common label or an item in table + tmpstring = _("Bacula network backup system director daemon"); + + // TRANSLATORS: Name of Service (File name: bacula-fd, RPM: bacula), can be used as check box, item in multiple selection box... + tmpstring = _("Bacula File Daemon"); + + // TRANSLATORS: Description of a Service (File name: bacula-fd, RPM: bacula), used as a common label or an item in table + tmpstring = _("Bacula network backup system file daemon"); + + // TRANSLATORS: Name of Service (File name: bacula-sd, RPM: bacula-server), can be used as check box, item in multiple selection box... + tmpstring = _("Bacula Storage Daemon"); + + // TRANSLATORS: Description of a Service (File name: bacula-sd, RPM: bacula-server), used as a common label or an item in table + tmpstring = _("Bacula network backup system storage daemon"); + + // TRANSLATORS: Name of Service (File name: bind, RPM: bind ypbind), can be used as check box, item in multiple selection box... + tmpstring = _("bind DNS server"); + + // TRANSLATORS: Description of a Service (File name: bind, RPM: bind ypbind), used as a common label or an item in table + tmpstring = _("Open ports for the bind DNS server"); + + // TRANSLATORS: Name of Service (File name: courier-imap, RPM: courier-imap), can be used as check box, item in multiple selection box... + tmpstring = _("courier-imapd"); + + // TRANSLATORS: Description of a Service (File name: courier-imap, RPM: courier-imap), used as a common label or an item in table + tmpstring = _("Opens ports for courier-imapd."); + + // TRANSLATORS: Name of Service (File name: courier-imap-ssl, RPM: courier-imap), can be used as check box, item in multiple selection box... + tmpstring = _("courier-imapd"); + + // TRANSLATORS: Description of a Service (File name: courier-imap-ssl, RPM: courier-imap), used as a common label or an item in table + tmpstring = _("Opens ports for courier-imapd."); + + // TRANSLATORS: Name of Service (File name: cups, RPM: cups-libs), can be used as check box, item in multiple selection box... + tmpstring = _("cups"); + + // TRANSLATORS: Description of a Service (File name: cups, RPM: cups-libs), used as a common label or an item in table + tmpstring = _("Firewall Configuration file for printing service CUPS"); + + // TRANSLATORS: Name of Service (File name: cyrus-imapd, RPM: cyrus-imapd), can be used as check box, item in multiple selection box... + tmpstring = _("cyrus-imapd Server"); + + // TRANSLATORS: Description of a Service (File name: cyrus-imapd, RPM: cyrus-imapd), used as a common label or an item in table + tmpstring = _("Opens ports for the cyrus-imapd Server."); + + // TRANSLATORS: Name of Service (File name: dhcp-server, RPM: dhcp), can be used as check box, item in multiple selection box... + tmpstring = _("DHCP Server"); + + // TRANSLATORS: Description of a Service (File name: dhcp-server, RPM: dhcp), used as a common label or an item in table + tmpstring = _("Opens ports for ISC DHCP Server."); + + // TRANSLATORS: Name of Service (File name: dnsmasq-dhcp, RPM: dnsmasq), can be used as check box, item in multiple selection box... + tmpstring = _("dnsmasq"); + + // TRANSLATORS: Description of a Service (File name: dnsmasq-dhcp, RPM: dnsmasq), used as a common label or an item in table + tmpstring = _("Open ports for the dnsmasq DNS/DHCP server"); + + // TRANSLATORS: Name of Service (File name: dnsmasq-dns, RPM: dnsmasq), can be used as check box, item in multiple selection box... + tmpstring = _("dnsmasq"); + + // TRANSLATORS: Description of a Service (File name: dnsmasq-dns, RPM: dnsmasq), used as a common label or an item in table + tmpstring = _("Open ports for the dnsmasq DNS/DHCP server"); + + // TRANSLATORS: Name of Service (File name: finger-server, RPM: finger-server), can be used as check box, item in multiple selection box... + tmpstring = _("Finger Server"); + + // TRANSLATORS: Description of a Service (File name: finger-server, RPM: finger-server), used as a common label or an item in table + tmpstring = _("Opens ports for Finger Server."); + + // TRANSLATORS: Name of Service (File name: iceccd, RPM: icecream), can be used as check box, item in multiple selection box... + tmpstring = _("icecream daemon"); + + // TRANSLATORS: Description of a Service (File name: iceccd, RPM: icecream), used as a common label or an item in table + tmpstring = _("opens socket for the icecream compilation daemon"); + + // TRANSLATORS: Name of Service (File name: icecream-scheduler, RPM: icecream), can be used as check box, item in multiple selection box... + tmpstring = _("icecream scheduler"); + + // TRANSLATORS: Description of a Service (File name: icecream-scheduler, RPM: icecream), used as a common label or an item in table + tmpstring = _("opens ports for the Icecream scheduler"); + + // TRANSLATORS: Name of Service (File name: imap, RPM: courier-imap imap-lib), can be used as check box, item in multiple selection box... + tmpstring = _("imap Server"); + + // TRANSLATORS: Description of a Service (File name: imap, RPM: courier-imap imap-lib), used as a common label or an item in table + tmpstring = _("Opens ports for imap Server."); + + // TRANSLATORS: Name of Service (File name: iscsitarget, RPM: tgt), can be used as check box, item in multiple selection box... + tmpstring = _("iSCSI Target Daemon"); + + // TRANSLATORS: Description of a Service (File name: iscsitarget, RPM: tgt), used as a common label or an item in table + tmpstring = _("Opens ports for iSCSI Target Daemon with broadcast allowed."); + + // TRANSLATORS: Name of Service (File name: isns, RPM: isns), can be used as check box, item in multiple selection box... + tmpstring = _("iSNS Daemon"); + + // TRANSLATORS: Description of a Service (File name: isns, RPM: isns), used as a common label or an item in table + tmpstring = _("Opens ports for iSNS daemon with broadcast allowed."); + + // TRANSLATORS: Name of Service (File name: kadmind, RPM: krb5-server), can be used as check box, item in multiple selection box... + tmpstring = _("Kerberos Admin Server"); + + // TRANSLATORS: Description of a Service (File name: kadmind, RPM: krb5-server), used as a common label or an item in table + tmpstring = _("Open ports for kadmind Server"); + + // TRANSLATORS: Name of Service (File name: kdc, RPM: krb5-server), can be used as check box, item in multiple selection box... + tmpstring = _("Key Distribution Center"); + + // TRANSLATORS: Description of a Service (File name: kdc, RPM: krb5-server), used as a common label or an item in table + tmpstring = _("Open ports for the Key Distribution Center"); + + // TRANSLATORS: Name of Service (File name: lighttpd, RPM: lighttpd), can be used as check box, item in multiple selection box... + tmpstring = _("lighttpd"); + + // TRANSLATORS: Description of a Service (File name: lighttpd, RPM: lighttpd), used as a common label or an item in table + tmpstring = _("Open the http port for lighttpd."); + + // TRANSLATORS: Name of Service (File name: lighttpd-ssl, RPM: lighttpd), can be used as check box, item in multiple selection box... + tmpstring = _("lighttpd"); + + // TRANSLATORS: Description of a Service (File name: lighttpd-ssl, RPM: lighttpd), used as a common label or an item in table + tmpstring = _("Open the https port for lighttpd."); + + // TRANSLATORS: Name of Service (File name: mysql, RPM: mysql), can be used as check box, item in multiple selection box... + tmpstring = _("MySQL server"); + + // TRANSLATORS: Description of a Service (File name: mysql, RPM: mysql), used as a common label or an item in table + tmpstring = _("opens ports for MySQL in order to allow other hosts connect to it"); + + // TRANSLATORS: Name of Service (File name: nfs-client, RPM: nfs-client), can be used as check box, item in multiple selection box... + tmpstring = _("NFS Client"); + + // TRANSLATORS: Description of a Service (File name: nfs-client, RPM: nfs-client), used as a common label or an item in table + tmpstring = _("Firewall Configuration for NFS client. Opens ports for NFS client to allow connection to an NFS server."); + + // TRANSLATORS: Name of Service (File name: nfs-kernel-server, RPM: nfs-kernel-server), can be used as check box, item in multiple selection box... + tmpstring = _("NFS Server Service"); + + // TRANSLATORS: Description of a Service (File name: nfs-kernel-server, RPM: nfs-kernel-server), used as a common label or an item in table + tmpstring = _("Firewall Configuration for nfs kernel server. opens ports for NFS in order to allow other hosts connect to it"); + + // TRANSLATORS: Name of Service (File name: ntp, RPM: ntp), can be used as check box, item in multiple selection box... + tmpstring = _("xntp Server"); + + // TRANSLATORS: Description of a Service (File name: ntp, RPM: ntp), used as a common label or an item in table + tmpstring = _("Opens ports for xntp."); + + // TRANSLATORS: Name of Service (File name: nut, RPM: nut-classic), can be used as check box, item in multiple selection box... + tmpstring = _("Network UPS Tools"); + + // TRANSLATORS: Description of a Service (File name: nut, RPM: nut-classic), used as a common label or an item in table + tmpstring = _("Opens ports for remote UPS signalling for Network UPS Tools."); + + // TRANSLATORS: Name of Service (File name: openldap, RPM: openldap2), can be used as check box, item in multiple selection box... + tmpstring = _("OpenLDAP Server"); + + // TRANSLATORS: Description of a Service (File name: openldap, RPM: openldap2), used as a common label or an item in table + tmpstring = _("Opens ports for the OpenLDAP Server (slapd)."); + + // TRANSLATORS: Name of Service (File name: postfix, RPM: postfix), can be used as check box, item in multiple selection box... + tmpstring = _("SMTP with Postfix"); + + // TRANSLATORS: Description of a Service (File name: postfix, RPM: postfix), used as a common label or an item in table + tmpstring = _("Firewall Configuration file for postfix"); + + // TRANSLATORS: Name of Service (File name: postgresql, RPM: postgresql-server), can be used as check box, item in multiple selection box... + tmpstring = _("PostgreSQL Server"); + + // TRANSLATORS: Description of a Service (File name: postgresql, RPM: postgresql-server), used as a common label or an item in table + tmpstring = _("Opens TCP port 5432 to allow remote connections to the PostgreSQL server."); + + // TRANSLATORS: Name of Service (File name: pure-ftpd, RPM: pure-ftpd), can be used as check box, item in multiple selection box... + tmpstring = _("pureftpd"); + + // TRANSLATORS: Description of a Service (File name: pure-ftpd, RPM: pure-ftpd), used as a common label or an item in table + tmpstring = _("Opens ports for pureftpd with broadcast allowed."); + + // TRANSLATORS: Name of Service (File name: sendmail, RPM: sendmail), can be used as check box, item in multiple selection box... + tmpstring = _("SMTP with sendmail"); + + // TRANSLATORS: Description of a Service (File name: sendmail, RPM: sendmail), used as a common label or an item in table + tmpstring = _("Firewall Configuration file for postfix"); + + // TRANSLATORS: Name of Service (File name: squid, RPM: yast2-squid), can be used as check box, item in multiple selection box... + tmpstring = _("Squid Service"); + + // TRANSLATORS: Description of a Service (File name: squid, RPM: yast2-squid), used as a common label or an item in table + tmpstring = _("Opens ports for Squid"); + + // TRANSLATORS: Name of Service (File name: sshd, RPM: openssh), can be used as check box, item in multiple selection box... + tmpstring = _("Secure Shell Server"); + + // TRANSLATORS: Description of a Service (File name: sshd, RPM: openssh), used as a common label or an item in table + tmpstring = _("Open ports for Secure Shell Server"); + + // TRANSLATORS: Name of Service (File name: svnserve, RPM: subversion), can be used as check box, item in multiple selection box... + tmpstring = _("svnserve"); + + // TRANSLATORS: Description of a Service (File name: svnserve, RPM: subversion), used as a common label or an item in table + tmpstring = _("Open ports for svnserve"); + + // TRANSLATORS: Name of Service (File name: talkd, RPM: talk-server), can be used as check box, item in multiple selection box... + tmpstring = _("Talk Server"); + + // TRANSLATORS: Description of a Service (File name: talkd, RPM: talk-server), used as a common label or an item in table + tmpstring = _("Open ports for Talk Server"); + + // TRANSLATORS: Name of Service (File name: telnet-server, RPM: telnet-server), can be used as check box, item in multiple selection box... + tmpstring = _("Telnet Server"); + + // TRANSLATORS: Description of a Service (File name: telnet-server, RPM: telnet-server), used as a common label or an item in table + tmpstring = _("Opens ports for Telnet Server."); + + // TRANSLATORS: Name of Service (File name: tetrinet-server, RPM: tetrinet-server), can be used as check box, item in multiple selection box... + tmpstring = _("Tetrinet Server"); + + // TRANSLATORS: Description of a Service (File name: tetrinet-server, RPM: tetrinet-server), used as a common label or an item in table + tmpstring = _("Opens ports in firewall to make possible to connect clients to your server. "); + + // TRANSLATORS: Name of Service (File name: vnc-httpd, RPM: tightvnc), can be used as check box, item in multiple selection box... + tmpstring = _("VNC mini-HTTP server"); + + // TRANSLATORS: Description of a Service (File name: vnc-httpd, RPM: tightvnc), used as a common label or an item in table + tmpstring = _("Opens the VNC HTTP ports so that browsers can connect."); + + // TRANSLATORS: Name of Service (File name: vnc-server, RPM: tightvnc), can be used as check box, item in multiple selection box... + tmpstring = _("VNC"); + + // TRANSLATORS: Description of a Service (File name: vnc-server, RPM: tightvnc), used as a common label or an item in table + tmpstring = _("Opens VNC server ports so that viewers can connect."); + + // TRANSLATORS: Name of Service (File name: vsftpd, RPM: vsftpd), can be used as check box, item in multiple selection box... + tmpstring = _("vsftpd Server"); + + // TRANSLATORS: Description of a Service (File name: vsftpd, RPM: vsftpd), used as a common label or an item in table + tmpstring = _("Opens ports for vsftpd Server."); + + // TRANSLATORS: Name of Service (File name: xdmcp, RPM: xorg-x11), can be used as check box, item in multiple selection box... + tmpstring = _("xdmcp"); + + // TRANSLATORS: Description of a Service (File name: xdmcp, RPM: xorg-x11), used as a common label or an item in table + tmpstring = _("Allow other hosts to access your display manager via XDMCP"); + + // TRANSLATORS: Name of Service (File name: xorg-x11-server, RPM: xorg-x11-Xvnc), can be used as check box, item in multiple selection box... + tmpstring = _("VNC Server"); + + // TRANSLATORS: Description of a Service (File name: xorg-x11-server, RPM: xorg-x11-Xvnc), used as a common label or an item in table + tmpstring = _("Opens ports for VNC Server"); + + // TRANSLATORS: Name of Service (File name: ypbind, RPM: ypbind), can be used as check box, item in multiple selection box... + tmpstring = _("NIS Client"); + + // TRANSLATORS: Description of a Service (File name: ypbind, RPM: ypbind), used as a common label or an item in table + tmpstring = _("The ypbind daemon binds NIS clients to an NIS domain"); + + // TRANSLATORS: Name of Service (File name: ypserv, RPM: ypserv), can be used as check box, item in multiple selection box... + tmpstring = _("NIS Server"); + + // TRANSLATORS: Description of a Service (File name: ypserv, RPM: ypserv), used as a common label or an item in table + tmpstring = _("Configuration for a NIS master/slave server"); + +} diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-2.17.34/scripts/save_y2logs new/yast2-2.17.35/scripts/save_y2logs --- old/yast2-2.17.34/scripts/save_y2logs 2008-07-18 10:11:22.000000000 +0200 +++ new/yast2-2.17.35/scripts/save_y2logs 2008-09-30 09:57:49.000000000 +0200 @@ -4,7 +4,7 @@ # to attach it to a Bugzilla bug report # # Author: Stefan Hundhammer <sh@suse.de> -# $Id: save_y2logs 40493 2007-08-27 10:02:44Z sh-sh-sh $ +# $Id: save_y2logs 51676 2008-09-29 19:32:51Z visnov $ usage() { @@ -50,6 +50,10 @@ LIST="$LIST $( cd /var/log/; ls evms-engine.*)" fi +if [ -f /var/log/zypp/history ]; then + LIST="$LIST $( cd /var/log/; ls zypp/history*)" +fi + RPM_LIST="rpm-qa" if [ -f /var/lib/rpm/Packages ]; then rpm -qa --qf '%{NAME}-%{VERSION}-%{RELEASE}\t\t\t(%{VENDOR})\t%{DISTRIBUTION}\n' 2>/dev/null | sort >/var/log/$RPM_LIST diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/yast2-2.17.34/VERSION new/yast2-2.17.35/VERSION --- old/yast2-2.17.34/VERSION 2008-09-29 14:29:55.000000000 +0200 +++ new/yast2-2.17.35/VERSION 2008-09-30 09:57:50.000000000 +0200 @@ -1 +1 @@ -2.17.34 +2.17.35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de