Some cleans (#1448)

This commit is contained in:
Xavier Guimard 2018-06-12 14:25:38 +02:00
parent 706b0ec3f5
commit e1f39c4adf
5 changed files with 2 additions and 5 deletions

View File

@ -13,7 +13,6 @@ ldapBindPassword = admin
[portal]
notification = 0
checkXSS = 0
portalSkin = bootstrap
staticPrefix = /static

View File

@ -10,7 +10,6 @@ dbiChain = dbi:SQLite:dbname=__pwd__/e2e-tests/conf/config.db
[portal]
notification = 0
checkXSS = 0
portalSkin = bootstrap
staticPrefix = /static

View File

@ -18,7 +18,6 @@ dirName=__pwd__/e2e-tests/conf
[portal]
notification = 0
checkXSS = 0
portalSkin = bootstrap
staticPrefix = /static

View File

@ -155,7 +155,7 @@
"_whatToTrace": "$_auth eq 'SAML' ? \"$_user\\@$_idpConfKey\" : $_auth eq 'OpenIDConnect' ? \"$_user\\@$_oidcConnectedRP\" : \"$_user\""
},
"mailUrl": "http://auth.example.com:__port__/resetpwd",
"notification": 1,
"notification": 0,
"notificationStorage": "File",
"notificationStorageOptions": {
"dirName": "__pwd__/e2e-tests/conf"

View File

@ -96,7 +96,7 @@ sub statusInit {
my $perl_exec = ( $^X =~ /perl/ ) ? $^X : 'perl';
exec $perl_exec, '-MLemonldap::NG::Handler::Lib::Status',
map( { "-I$_" } @INC ),
'-e &Lemonldap::NG::Handler::Lib::Status::run()';
'-e', '&Lemonldap::NG::Handler::Lib::Status::run()';
}
}