Revision 810d2c7f944822eba10bbd884ae499271f16fb67 authored by Maxime Besson on 27 August 2019, 09:01:32 UTC, committed by Maxime Besson on 27 August 2019, 21:13:36 UTC
1 parent a04a376
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