Revision c3f5960452ef1f3ce52e12a6a4a46ef317f07fff authored by Xavier Guimard on 07 March 2019, 17:15:48 UTC, committed by Xavier Guimard on 07 March 2019, 17:15:48 UTC
@maudoux: could you review this?
1 parent a9b0298
Raw File
run-ldap
#!/usr/bin/perl

$ENV{LLNGTESTLDAP} = 1;

chdir 'lemonldap-ng-portal';
require './t/test-ldap.pm';
system( $ENV{LLNGTESTLDAP_SLAPADD_BIN} || '/usr/sbin/slapadd'
      . ' -F t/testslapd/slapd.d -n 1 -l t/testslapd/confs-sessions.ldif' );

print STDERR "Press a key to stop LDAP server\n";
my $r = <STDIN>;

stopLdapServer();

back to top