Revision 0ffb9a462931276c1bb843bcbe8fa597e00e8ab2 authored by Christophe Maudoux on 30 December 2018, 14:22:12 UTC, committed by Christophe Maudoux on 30 December 2018, 14:22:12 UTC
1 parent 7b3e95a
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