summaryrefslogtreecommitdiff
path: root/source4/script/tests/Samba4.pm
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-03-07 05:29:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:49:21 -0500
commit41a72a506fce51737992c8ea3201ef35dcafd73a (patch)
tree9c4becddfd4ddc6271f5437fccee976d1e243f28 /source4/script/tests/Samba4.pm
parent4362ce99ec3451ce5061a7de04851750c3bd7e23 (diff)
downloadsamba-41a72a506fce51737992c8ea3201ef35dcafd73a.tar.gz
samba-41a72a506fce51737992c8ea3201ef35dcafd73a.tar.bz2
samba-41a72a506fce51737992c8ea3201ef35dcafd73a.zip
r21739: Make it easy to change the log level for the slapd processes, and have
the logs go to a file. Andrew Bartlett (This used to be commit 9aaa19319718a5a8fcc1df066cbce67eaa3431d8)
Diffstat (limited to 'source4/script/tests/Samba4.pm')
-rw-r--r--source4/script/tests/Samba4.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/script/tests/Samba4.pm b/source4/script/tests/Samba4.pm
index f81d75ffd3..99e329e7b9 100644
--- a/source4/script/tests/Samba4.pm
+++ b/source4/script/tests/Samba4.pm
@@ -15,15 +15,15 @@ use POSIX;
sub slapd_start($$)
{
- my ($conf, $uri) = @_;
+ my ($conf, $uri, $loglevel) = @_;
# running slapd in the background means it stays in the same process group, so it can be
# killed by timelimit
if (defined($ENV{FEDORA_DS_PREFIX})) {
- system("$ENV{FEDORA_DS_PREFIX}/sbin/ns-slapd -D $ENV{FEDORA_DS_DIR} -d0 &");
+ system("$ENV{FEDORA_DS_PREFIX}/sbin/ns-slapd -D $ENV{FEDORA_DS_DIR} -d$ENV{FEDORA_DS_LOGLEVEL} > $ENV{LDAPDIR}/logs 2>&1 &");
} else {
my $oldpath = $ENV{PATH};
$ENV{PATH} = "/usr/local/sbin:/usr/sbin:/sbin:$ENV{PATH}";
- system("slapd -d0 -f $conf -h $uri &");
+ system("slapd -d$ENV{OPENLDAP_LOGLEVEL} -f $conf -h $uri > $ENV{LDAPDIR}/logs 2>&1 &");
$ENV{PATH} = $oldpath;
}
return 1;