1
0
mirror of https://github.com/Yubico/yubikey-ksm.git synced 2024-11-29 00:24:14 +01:00

Modify config-db.php include to check for file instead of doing a (failed) include and spamming the log files that the file doesn't exist

This commit is contained in:
Cam34 2015-05-28 03:52:15 +00:00
parent f2713f1a49
commit 829d896c21

View File

@ -1,7 +1,9 @@
<?php <?php
//ykksm will use the configuration stored in /etc/yubico/ksm/config-db.php, if that file exists. If it does not exist, the below values will be used. //ykksm will use the configuration stored in /etc/yubico/ksm/config-db.php, if that file exists. If it does not exist, the below values will be used.
if(!include '/etc/yubico/ksm/config-db.php') { if(file_exists('/etc/yubico/ksm/config-db.php')) {
include '/etc/yubico/ksm/config-db.php';
} else {
$dbuser='ykksmreader'; $dbuser='ykksmreader';
$dbpass='yourpassword'; $dbpass='yourpassword';
$basepath=''; $basepath='';
@ -10,7 +12,6 @@ if(!include '/etc/yubico/ksm/config-db.php') {
$dbport=''; $dbport='';
$dbtype='mysql'; $dbtype='mysql';
} }
$db_dsn = "$dbtype:dbname=$dbname;host=127.0.0.1"; $db_dsn = "$dbtype:dbname=$dbname;host=127.0.0.1";
$db_username = $dbuser; $db_username = $dbuser;
$db_password = $dbpass; $db_password = $dbpass;