Revision 248b81ad0ef914d5a9b943a5e42096f7b0b00174 authored by Christophe Maudoux on 29 August 2018, 17:49:08 UTC, committed by Christophe Maudoux on 29 August 2018, 17:49:08 UTC
1 parent c9f257a
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