Update debian/control

This commit is contained in:
Xavier Guimard 2017-09-26 19:11:04 +00:00
parent 89f5783d16
commit 69ece7740d
9 changed files with 11 additions and 12 deletions

4
debian/control vendored
View File

@ -2,10 +2,8 @@ Source: lemonldap-ng
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Xavier Guimard <x.guimard@free.fr>
Section: perl
Testsuite: autopkgtest
Priority: optional
Build-Depends: debhelper (>= 9),
dh-systemd,
Build-Depends: debhelper (>= 9.20160709),
po-debconf
Build-Depends-Indep: libapache-session-perl,
libcache-cache-perl,

View File

@ -129,7 +129,7 @@
.\" ========================================================================
.\"
.IX Title "llng-fastcgi-server 1"
.TH llng-fastcgi-server 1 "2017-09-22" "perl v5.26.0" "User Contributed Perl Documentation"
.TH llng-fastcgi-server 1 "2017-09-26" "perl v5.26.0" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l

View File

@ -58,7 +58,7 @@ sub languages { $_[0]->env->{HTTP_ACCEPT_LANGUAGE} }
sub authorization { $_[0]->env->{HTTP_AUTHORIZATION} }
sub hostname { $_[0]->env->{HTTP_HOST} }
sub referer { $_[0]->env->{REFERER} }
sub query_string { $_[0]->env->{QUERY_STRING} }
sub query_string { $_[0]->env->{QUERY_STRING} }
sub error {
my ( $self, $err ) = @_;

View File

@ -26,7 +26,7 @@ has srvList => ( is => 'rw', default => sub { [] } );
sub init {
my ($self) = @_;
unless($self->conf->{casStorage}) {
unless ( $self->conf->{casStorage} ) {
$self->logger->error("CAS storage isn't defined");
return 0;
}

View File

@ -25,7 +25,7 @@ has path => ( is => 'rw', default => 'oauth2' );
sub init {
my ($self) = @_;
unless($self->conf->{oidcStorage}) {
unless ( $self->conf->{oidcStorage} ) {
$self->logger->error("OIDC storage isn't defined");
return 0;
}

View File

@ -37,7 +37,7 @@ sub forAuthUser { 'handleAuthRequests' }
sub init {
my ($self) = @_;
unless($self->conf->{samlStorage}) {
unless ( $self->conf->{samlStorage} ) {
$self->logger->error("SAML storage isn't defined");
return 0;
}

View File

@ -25,7 +25,7 @@ sub beforeAuth { 'exportRequestParameters' }
sub init {
my ($self) = @_;
unless($self->conf->{casStorage}) {
unless ( $self->conf->{casStorage} ) {
$self->logger->error("CAS storage isn't defined");
return 0;
}
@ -245,7 +245,8 @@ sub run {
}
if ($logout_service) {
$self->logger->debug("User will be redirected to $logout_service");
$self->logger->debug(
"User will be redirected to $logout_service");
$req->{urldc} = $logout_service;
$req->steps( [] );
return PE_OK;

View File

@ -52,7 +52,7 @@ has configStorage => (
sub init {
my ($self) = @_;
unless($self->conf->{oidcStorage}) {
unless ( $self->conf->{oidcStorage} ) {
$self->logger->error("OIDC storage isn't defined");
return 0;
}

View File

@ -35,7 +35,7 @@ use constant beforeAuth => 'storeEnv';
sub init {
my ($self) = @_;
unless($self->conf->{samlStorage}) {
unless ( $self->conf->{samlStorage} ) {
$self->logger->error("SAML storage isn't defined");
return 0;
}