From 919ccb363fe52f8654407239d05ce73b417daae6 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sat, 18 Feb 2017 11:05:20 +0100 Subject: [PATCH] [Fixed] const log files (were in conf dir) --- lib/include/bash/const | 8 ++++---- lib/include/php/const | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/include/bash/const b/lib/include/bash/const index 4688dc9..c2d426e 100755 --- a/lib/include/bash/const +++ b/lib/include/bash/const @@ -19,10 +19,10 @@ export URL_CONF="$CONF_DIR/api.url"; export AUTH_CONF="$CONF_DIR/auth.list"; # LOG FILES -export BOOT_LOG="$CONF_DIR/boot.log"; -export DAEMON_LOG="$CONF_DIR/daemon.log"; -export INSTALL_LOG="$CONF_DIR/install-source.log"; -export UPDATE_LOG="$CONF_DIR/update.log"; +export BOOT_LOG="$LOG_DIR/boot.log"; +export DAEMON_LOG="$LOG_DIR/daemon.log"; +export INSTALL_LOG="$LOG_DIR/install-source.log"; +export UPDATE_LOG="$LOG_DIR/update.log"; # DATA FILES export ACCESS_DATA="$DATA_DIR/access.data"; diff --git a/lib/include/php/const b/lib/include/php/const index 42957f7..b618c4f 100755 --- a/lib/include/php/const +++ b/lib/include/php/const @@ -19,10 +19,10 @@ define('AUTH_CONF', CONF_DIR.'/auth.list'); # LOG FILES - define('BOOT_LOG', CONF_DIR.'/boot.log'); - define('DAEMON_LOG', CONF_DIR.'/daemon.log'); - define('INSTALL_LOG', CONF_DIR.'/install-source.log'); - define('UPDATE_LOG', CONF_DIR.'/update.log'); + define('BOOT_LOG', LOG_DIR.'/boot.log'); + define('DAEMON_LOG', LOG_DIR.'/daemon.log'); + define('INSTALL_LOG', LOG_DIR.'/install-source.log'); + define('UPDATE_LOG', LOG_DIR.'/update.log'); # DATA FILES define('ACCESS_DATA', DATA_DIR.'/access.data');