Browse Source

Revert Logs

pull/1946/merge
Daniel Gibbs 7 years ago
parent
commit
4d6d22692b
  1. 30
      lgsm/functions/install_logs.sh

30
lgsm/functions/install_logs.sh

@ -16,8 +16,8 @@ fi
sleep 0.5 sleep 0.5
# Create LinuxGSM logs # Create LinuxGSM logs
echo -ne "installing log dir: ${logdir}..." echo -ne "installing log dir: ${logdir}..."
mkdir -p "${logdir}"
if mkdir -p "${logdir}"; then if [ $? -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
core_exit.sh core_exit.sh
else else
@ -25,16 +25,16 @@ else
fi fi
echo -ne "installing LinuxGSM log dir: ${lgsmlogdir}..." echo -ne "installing LinuxGSM log dir: ${lgsmlogdir}..."
mkdir -p "${lgsmlogdir}"
if mkdir -p "${lgsmlogdir}"; then if [ $? -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
core_exit.sh core_exit.sh
else else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fi fi
echo -ne "creating LinuxGSM log: ${lgsmlog}..." echo -ne "creating LinuxGSM log: ${lgsmlog}..."
touch "${lgsmlog}"
if touch "${lgsmlog}"; then if [ $? -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
core_exit.sh core_exit.sh
else else
@ -43,16 +43,16 @@ fi
# Create Console logs # Create Console logs
if [ -n "${consolelogdir}" ]; then if [ -n "${consolelogdir}" ]; then
echo -ne "installing console log dir: ${consolelogdir}..." echo -ne "installing console log dir: ${consolelogdir}..."
mkdir -p "${consolelogdir}"
if mkdir -p "${consolelogdir}"; then if [ $? -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
core_exit.sh core_exit.sh
else else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fi fi
echo -ne "creating console log: ${consolelog}..." echo -ne "creating console log: ${consolelog}..."
touch "${consolelog}"
if touch "${consolelog}"; then if [ $? -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
core_exit.sh core_exit.sh
else else
@ -63,7 +63,8 @@ fi
# Create Game logs # Create Game logs
if [ -n "${gamelogdir}" ]&&[ ! -d "${gamelogdir}" ]; then if [ -n "${gamelogdir}" ]&&[ ! -d "${gamelogdir}" ]; then
echo -ne "installing game log dir: ${gamelogdir}..." echo -ne "installing game log dir: ${gamelogdir}..."
if mkdir -p "${gamelogdir}"; then mkdir -p "${gamelogdir}"
if [ $? -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
core_exit.sh core_exit.sh
else else
@ -78,7 +79,8 @@ fi
if [ -n "${gamelogdir}" ]; then if [ -n "${gamelogdir}" ]; then
if [ "${gamelogdir:0:${#logdir}}" != "${logdir}" ]; then if [ "${gamelogdir:0:${#logdir}}" != "${logdir}" ]; then
echo -ne "creating symlink to game log dir: ${logdir}/server -> ${gamelogdir}..." echo -ne "creating symlink to game log dir: ${logdir}/server -> ${gamelogdir}..."
if ln -nfs "${gamelogdir}" "${logdir}/server"; then ln -nfs "${gamelogdir}" "${logdir}/server"
if [ $? -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
core_exit.sh core_exit.sh
else else
@ -91,8 +93,8 @@ fi
if [ -d "${rootdir}/Steam/logs" ]; then if [ -d "${rootdir}/Steam/logs" ]; then
if [ ! -L "${logdir}/steamcmd" ]; then if [ ! -L "${logdir}/steamcmd" ]; then
echo -ne "creating symlink to steam log dir: ${logdir}/steamcmd -> ${rootdir}/Steam/logs..." echo -ne "creating symlink to steam log dir: ${logdir}/steamcmd -> ${rootdir}/Steam/logs..."
ln -nfs "${rootdir}/Steam/logs" "${logdir}/steamcmd"
if ln -nfs "${rootdir}/Steam/logs" "${logdir}/steamcmd"; then if [ $? -ne 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
core_exit.sh core_exit.sh
else else

Loading…
Cancel
Save