summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--slapi-nis.spec6
-rwxr-xr-xtests/run-tests.sh2
3 files changed, 8 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c225489..0f889cd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(slapi-nis,0.39)
+AC_INIT(slapi-nis,0.40)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE(foreign)
LT_INIT([disable-static])
diff --git a/slapi-nis.spec b/slapi-nis.spec
index 69223fb..54c40b6 100644
--- a/slapi-nis.spec
+++ b/slapi-nis.spec
@@ -5,7 +5,7 @@
%endif
Name: slapi-nis
-Version: 0.39
+Version: 0.40
Release: 1%{?dist}
Summary: NIS Server and Schema Compatibility plugins for Directory Server
Group: System Environment/Daemons
@@ -70,6 +70,10 @@ rm -rf $RPM_BUILD_ROOT
%{_sbindir}/nisserver-plugin-defs
%changelog
+* Fri Mar 30 2012 Nalin Dahyabhai <nalin@redhat.com> - 0.40-1
+- treat padding values passed to the "link" function as expressions to be
+ evaluated rather than simply as literal values (part of #767372)
+
* Wed Mar 28 2012 Nalin Dahyabhai <nalin@redhat.com> - 0.39-1
- add a "default" function for trying to evaluate one expression, then
another, then another... (part of #767372)
diff --git a/tests/run-tests.sh b/tests/run-tests.sh
index c2d0eb5..a508755 100755
--- a/tests/run-tests.sh
+++ b/tests/run-tests.sh
@@ -34,6 +34,7 @@ for subdir in "$@" ; do
fi
startslapd $TESTDIR/$subdir/dse.ldif $TESTDIR/$subdir/userRoot.ldif "$precmd"
if test -x $TESTDIR/$subdir/before.sh ; then
+ sleep 5
$TESTDIR/$subdir/before.sh > before.out 2>&1
if test -r $TESTDIR/$subdir/before.txt ; then
if ! cmp -s $TESTDIR/$subdir/before.txt before.out ; then
@@ -56,6 +57,7 @@ for subdir in "$@" ; do
fi
fi
if test -x $TESTDIR/$subdir/after.sh ; then
+ sleep 5
$TESTDIR/$subdir/after.sh > after.out 2>&1
if test -r $TESTDIR/$subdir/after.txt ; then
if ! cmp -s $TESTDIR/$subdir/after.txt after.out ; then