Hello community, here is the log from the commit of package yast2-users for openSUSE:Factory checked in at 2013-07-05 15:32:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-users (Old) and /work/SRC/openSUSE:Factory/.yast2-users.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-users" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-users/yast2-users.changes 2013-04-02 14:00:52.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-users.new/yast2-users.changes 2013-07-05 15:32:05.000000000 +0200 @@ -1,0 +2,6 @@ +Thu Jul 4 12:19:46 CEST 2013 - [email protected] + +- update testedfiles in tests (lslezak) +- 2.24.0 + +------------------------------------------------------------------- Old: ---- yast2-users-2.23.5.tar.bz2 New: ---- yast2-users-2.24.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-users.spec ++++++ --- /var/tmp/diff_new_pack.B23OIn/_old 2013-07-05 15:32:06.000000000 +0200 +++ /var/tmp/diff_new_pack.B23OIn/_new 2013-07-05 15:32:06.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-users -Version: 2.23.5 +Version: 2.24.0 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -94,7 +94,7 @@ %install make install DESTDIR="$RPM_BUILD_ROOT" -#[ -e "%{_prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK" ] || Y2DIR="$RPM_BUILD_ROOT/usr/share/YaST2" make check DESTDIR="$RPM_BUILD_ROOT" +[ -e "%{_prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK" ] || Y2DIR="$RPM_BUILD_ROOT/usr/share/YaST2" make check DESTDIR="$RPM_BUILD_ROOT" for f in `find $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/ -name "*.desktop"` ; do d=${f##*/} %suse_update_desktop_file -d ycc_${d%.desktop} ${d%.desktop} ++++++ yast2-users-2.23.5.tar.bz2 -> yast2-users-2.24.0.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/Makefile.am new/yast2-users-2.24.0/Makefile.am --- old/yast2-users-2.23.5/Makefile.am 2013-03-28 15:16:52.000000000 +0100 +++ new/yast2-users-2.24.0/Makefile.am 2013-07-04 13:38:03.000000000 +0200 @@ -158,19 +158,14 @@ TAGVERSION = $(Y2TOOL) tagversion -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' ;\ +# 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) \ fi check-tagversion: - @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; \ + cd $(srcdir) && $(TAGVERSION) --check >/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-users-2.23.5/Makefile.am.common new/yast2-users-2.24.0/Makefile.am.common --- old/yast2-users-2.23.5/Makefile.am.common 2013-03-28 15:16:52.000000000 +0100 +++ new/yast2-users-2.24.0/Makefile.am.common 2013-07-04 13:38:03.000000000 +0200 @@ -31,7 +31,7 @@ CHECK_SYNTAX = true check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles) - @if test "$(client_DATA)"; then \ + @if test "$(filter %.ycp,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-users-2.23.5/Makefile.in new/yast2-users-2.24.0/Makefile.in --- old/yast2-users-2.23.5/Makefile.in 2013-03-28 15:17:06.000000000 +0100 +++ new/yast2-users-2.24.0/Makefile.in 2013-07-04 13:38:16.000000000 +0200 @@ -1066,19 +1066,14 @@ package: check-up-to-date check-tagversion check-textdomain package-local -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' ;\ +# 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) \ fi check-tagversion: - @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; \ + cd $(srcdir) && $(TAGVERSION) --check >/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-users-2.23.5/VERSION new/yast2-users-2.24.0/VERSION --- old/yast2-users-2.23.5/VERSION 2013-03-28 15:16:45.000000000 +0100 +++ new/yast2-users-2.24.0/VERSION 2013-07-04 12:44:48.000000000 +0200 @@ -1 +1 @@ -2.23.5 +2.24.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/configure new/yast2-users-2.24.0/configure --- old/yast2-users-2.23.5/configure 2013-03-28 15:17:04.000000000 +0100 +++ new/yast2-users-2.24.0/configure 2013-07-04 13:38:14.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-users 2.23.5. +# Generated by GNU Autoconf 2.69 for yast2-users 2.24.0. # # Report bugs to <http://bugs.opensuse.org/>. # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='yast2-users' PACKAGE_TARNAME='yast2-users' -PACKAGE_VERSION='2.23.5' -PACKAGE_STRING='yast2-users 2.23.5' +PACKAGE_VERSION='2.24.0' +PACKAGE_STRING='yast2-users 2.24.0' PACKAGE_BUGREPORT='http://bugs.opensuse.org/' PACKAGE_URL='' @@ -1377,7 +1377,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-users 2.23.5 to adapt to many kinds of systems. +\`configure' configures yast2-users 2.24.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1448,7 +1448,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of yast2-users 2.23.5:";; + short | recursive ) echo "Configuration of yast2-users 2.24.0:";; esac cat <<\_ACEOF @@ -1566,7 +1566,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -yast2-users configure 2.23.5 +yast2-users configure 2.24.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2110,7 +2110,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-users $as_me 2.23.5, which was +It was created by yast2-users $as_me 2.24.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3049,7 +3049,7 @@ # Define the identity of the package. PACKAGE='yast2-users' - VERSION='2.23.5' + VERSION='2.24.0' cat >>confdefs.h <<_ACEOF @@ -3172,7 +3172,7 @@ -VERSION="2.23.5" +VERSION="2.24.0" RPMNAME="yast2-users" MAINTAINER="Jiri Suchomel <[email protected]>" @@ -16927,7 +16927,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by yast2-users $as_me 2.23.5, which was +This file was extended by yast2-users $as_me 2.24.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -16993,7 +16993,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-users config.status 2.23.5 +yast2-users config.status 2.24.0 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-users-2.23.5/configure.in new/yast2-users-2.24.0/configure.in --- old/yast2-users-2.23.5/configure.in 2013-03-28 15:16:52.000000000 +0100 +++ new/yast2-users-2.24.0/configure.in 2013-07-04 13:38:03.000000000 +0200 @@ -1,9 +1,9 @@ dnl configure.in for yast2-users dnl -dnl -- This file is generated by y2autoconf 2.23.2 - DO NOT EDIT! -- +dnl -- This file is generated by y2autoconf 2.24.1 - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(yast2-users, 2.23.5, http://bugs.opensuse.org/, yast2-users) +AC_INIT(yast2-users, 2.24.0, http://bugs.opensuse.org/, yast2-users) 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.23.5" +VERSION="2.24.0" RPMNAME="yast2-users" MAINTAINER="Jiri Suchomel <[email protected]>" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/src/Makefile.in new/yast2-users-2.24.0/src/Makefile.in --- old/yast2-users-2.23.5/src/Makefile.in 2013-03-28 15:17:07.000000000 +0100 +++ new/yast2-users-2.24.0/src/Makefile.in 2013-07-04 13:38:17.000000000 +0200 @@ -729,7 +729,7 @@ dist-hook: check-syntax check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles) - @if test "$(client_DATA)"; then \ + @if test "$(filter %.ycp,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-users-2.23.5/src/inst_root.ycp new/yast2-users-2.24.0/src/inst_root.ycp --- old/yast2-users-2.23.5/src/inst_root.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/src/inst_root.ycp 2013-05-13 15:46:35.000000000 +0200 @@ -32,7 +32,7 @@ * * After all the password is crypted and written into the user_settings. * - * Authors: Klaus K�mpf <[email protected]> + * Authors: Klaus Kämpf <[email protected]> * * $Id$ */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/AddGroup.ycp new/yast2-users-2.24.0/testsuite/tests/AddGroup.ycp --- old/yast2-users-2.23.5/testsuite/tests/AddGroup.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/AddGroup.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -14,7 +14,7 @@ */ { - // testedfiles: Users.pm + // testedfiles: Users.pm UsersLDAP.pm import "Directory"; import "Users"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/AddUser.ycp new/yast2-users-2.24.0/testsuite/tests/AddUser.ycp --- old/yast2-users-2.23.5/testsuite/tests/AddUser.ycp 2013-02-26 14:06:34.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/AddUser.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -14,7 +14,7 @@ */ { - // testedfiles: Users.pm UsersLDAP.pm UsersCache.pm + // testedfiles: Users.pm UsersLDAP.pm UsersCache.pm UsersSimple.pm import "Directory"; import "Users"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/BuildAdditional.ycp new/yast2-users-2.24.0/testsuite/tests/BuildAdditional.ycp --- old/yast2-users-2.23.5/testsuite/tests/BuildAdditional.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/BuildAdditional.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -1,5 +1,5 @@ { - // testedfiles: Users.pm UserCache.pm + // testedfiles: Users.pm UserCache.pm UsersLDAP.pm import "Users"; import "UsersCache"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/DeleteUser.ycp new/yast2-users-2.24.0/testsuite/tests/DeleteUser.ycp --- old/yast2-users-2.23.5/testsuite/tests/DeleteUser.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/DeleteUser.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -14,7 +14,7 @@ */ { - // testedfiles: Users.pm UsersCache.pm + // testedfiles: Users.pm UsersCache.pm UsersLDAP.pm import "Users"; import "UsersCache"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/DeleteUserCryptedDir.ycp new/yast2-users-2.24.0/testsuite/tests/DeleteUserCryptedDir.ycp --- old/yast2-users-2.23.5/testsuite/tests/DeleteUserCryptedDir.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/DeleteUserCryptedDir.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -14,7 +14,7 @@ */ { - // testedfiles: Users.pm UsersPasswd.pm + // testedfiles: Users.pm UsersPasswd.pm UsersLDAP.pm UsersRoutines.pm import "Users"; import "UsersPasswd"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/EditUser.ycp new/yast2-users-2.24.0/testsuite/tests/EditUser.ycp --- old/yast2-users-2.23.5/testsuite/tests/EditUser.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/EditUser.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -8,7 +8,7 @@ */ { - // testedfiles: Users.pm UsersPasswd.pm + // testedfiles: Users.pm UsersPasswd.pm UsersLDAP.pm UsersRoutines.pm UsersSimple.pm import "Directory"; import "Mode"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/EditUserCryptedDirCreate.ycp new/yast2-users-2.24.0/testsuite/tests/EditUserCryptedDirCreate.ycp --- old/yast2-users-2.23.5/testsuite/tests/EditUserCryptedDirCreate.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/EditUserCryptedDirCreate.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -8,7 +8,7 @@ */ { - // testedfiles: Users.pm UsersPasswd.pm + // testedfiles: Users.pm UsersPasswd.pm UsersLDAP.pm UsersRoutines.pm import "Directory"; import "Mode"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/EditUserCryptedDirEnlarge.ycp new/yast2-users-2.24.0/testsuite/tests/EditUserCryptedDirEnlarge.ycp --- old/yast2-users-2.23.5/testsuite/tests/EditUserCryptedDirEnlarge.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/EditUserCryptedDirEnlarge.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -8,7 +8,7 @@ */ { - // testedfiles: Users.pm UsersPasswd.pm + // testedfiles: Users.pm UsersPasswd.pm UsersLDAP.pm UsersRoutines.pm import "Directory"; import "Mode"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/EditUserCryptedDirRemove.ycp new/yast2-users-2.24.0/testsuite/tests/EditUserCryptedDirRemove.ycp --- old/yast2-users-2.23.5/testsuite/tests/EditUserCryptedDirRemove.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/EditUserCryptedDirRemove.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -8,7 +8,7 @@ */ { - // testedfiles: Users.pm UsersPasswd.pm + // testedfiles: Users.pm UsersPasswd.pm UsersLDAP.pm UsersRoutines.pm import "Directory"; import "Mode"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/EditUsersGroups.ycp new/yast2-users-2.24.0/testsuite/tests/EditUsersGroups.ycp --- old/yast2-users-2.23.5/testsuite/tests/EditUsersGroups.ycp 2013-02-26 14:06:34.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/EditUsersGroups.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -7,7 +7,7 @@ */ { - // testedfiles: Users.pm + // testedfiles: Users.pm UsersLDAP.pm UsersRoutines.pm UsersSimple.pm import "Directory"; import "Mode"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/Import.ycp new/yast2-users-2.24.0/testsuite/tests/Import.ycp --- old/yast2-users-2.23.5/testsuite/tests/Import.ycp 2013-02-26 14:06:34.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/Import.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -6,7 +6,7 @@ * $Id$ */ { - // testedfiles: Users.pm UsersCache.pm + // testedfiles: Users.pm UsersCache.pm UsersLDAP.pm UsersSimple.pm import "Users"; import "UsersCache"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/Read.ycp new/yast2-users-2.24.0/testsuite/tests/Read.ycp --- old/yast2-users-2.23.5/testsuite/tests/Read.ycp 2013-01-22 11:53:15.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/Read.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -6,7 +6,7 @@ */ { - // testedfiles: Users.pm + // testedfiles: Users.pm UsersLDAP.pm import "Users"; import "UsersCache"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/SelectUser.ycp new/yast2-users-2.24.0/testsuite/tests/SelectUser.ycp --- old/yast2-users-2.23.5/testsuite/tests/SelectUser.ycp 2013-02-26 14:06:34.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/SelectUser.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -1,5 +1,5 @@ { - // testedfiles: Users.pm + // testedfiles: Users.pm UsersLDAP.pm import "Users"; import "UsersCache"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-2.23.5/testsuite/tests/YaPIGroupAdd.ycp new/yast2-users-2.24.0/testsuite/tests/YaPIGroupAdd.ycp --- old/yast2-users-2.23.5/testsuite/tests/YaPIGroupAdd.ycp 2013-02-26 14:06:34.000000000 +0100 +++ new/yast2-users-2.24.0/testsuite/tests/YaPIGroupAdd.ycp 2013-06-19 15:01:18.000000000 +0200 @@ -8,7 +8,7 @@ */ { - // testedfiles: Users.pm UsersCache.pm USERS.pm + // testedfiles: Users.pm UsersCache.pm USERS.pm UsersLDAP.pm UsersPasswd.pm import "Directory"; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
