Revision 27aea3ecd2da1710577a126cdb69a6a67c2fd6b2 authored by Xavier Guimard on 21 August 2018, 19:03:04 UTC, committed by Xavier Guimard on 21 August 2018, 19:03:04 UTC
1 parent a40f9a3
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