Skip to content

Commit

Permalink
feat: improve log directory creation
Browse files Browse the repository at this point in the history
- Updated log directory creation to include italic formatting for directory names.
- Added italic formatting for script log, console log, game log, and steam log directories.
- Improved serverfiles directory creation by including italic formatting for the directory name.
  • Loading branch information
dgibbs64 committed Sep 27, 2023
1 parent c091a1d commit 17b0efd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions lgsm/modules/install_logs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ -z "${checklogs}" ]; then
fn_sleep_time
fi

echo -en "creating log directory [ ${logdir} ]"
echo -en "creating log directory [ ${italic}${logdir}${default} ]"
if [ ! -d "${logdir}" ]; then
if ! mkdir -p "${logdir}"; then
fn_print_fail_eol_nl
Expand All @@ -26,7 +26,7 @@ else
fn_print_skip_eol_nl
fi

echo -en "creating script log directory [ ${lgsmlogdir} ]"
echo -en "creating script log directory [ ${italic}${lgsmlogdir}${default} ]"
if [ ! -d "${lgsmlogdir}" ]; then
if ! mkdir -p "${lgsmlogdir}"; then
fn_print_fail_eol_nl
Expand All @@ -38,7 +38,7 @@ else
fn_print_skip_eol_nl
fi

echo -en "creating script log [ ${lgsmlog} ]"
echo -en "creating script log [ ${italic}${lgsmlog}${default} ]"
if [ ! -f "${lgsmlog}" ]; then
if ! touch "${lgsmlog}"; then
fn_print_fail_eol_nl
Expand All @@ -50,7 +50,7 @@ else
fn_print_skip_eol_nl
fi

echo -en "creating console log directory [ ${consolelogdir} ]"
echo -en "creating console log directory [ ${italic}${consolelogdir}${default} ]"
if [ ! -d "${consolelogdir}" ]; then
if ! mkdir -p "${consolelogdir}"; then
fn_print_fail_eol_nl
Expand All @@ -62,7 +62,7 @@ else
fn_print_skip_eol_nl
fi

echo -en "creating console log [ ${consolelog} ]"
echo -en "creating console log [ ${italic}${consolelog}${default} ]"
if [ ! -f "${consolelog}" ]; then
if ! touch "${consolelog}"; then
fn_print_fail_eol_nl
Expand All @@ -75,7 +75,7 @@ else
fi

if [ -n "${gamelogdir}" ]; then
echo -en "creating game log directory [ ${gamelogdir} ]"
echo -en "creating game log directory [ ${italic}${gamelogdir}${default} ]"
if [ ! -d "${gamelogdir}" ]; then
if ! mkdir -p "${gamelogdir}"; then
fn_print_fail_eol_nl
Expand All @@ -93,7 +93,7 @@ fi
# e.g serverfiles/log is not within log/: symlink created
# log/server is in log/: symlink not created
if [ -n "${gamelogdir}" ] && [ "${gamelogdir:0:${#logdir}}" != "${logdir}" ]; then
echo -en "creating symlink to game log directory [ ${logdir}/server -> ${gamelogdir} ]"
echo -en "creating symlink to game log directory [ ${italic}${logdir}/server -> ${gamelogdir}${default} ]"
# if path does not exist or does not match gamelogdir
if [ ! -h "${logdir}/server" ] || [ "$(readlink -f "${logdir}/server")" != "${gamelogdir}" ]; then
if ! ln -nfs "${gamelogdir}" "${logdir}/server"; then
Expand All @@ -109,7 +109,7 @@ fi

# If server uses SteamCMD create a symbolic link to the Steam logs.
if [ -d "${HOME}/.steam/steam/logs" ]; then
echo -en "creating symlink to steam log directory [ ${logdir}/steam -> ${HOME}/.steam/steam/logs ]"
echo -en "creating symlink to steam log directory [ ${italic}${logdir}/steam -> ${HOME}/.steam/steam/logs${default} ]"
if [ ! -L "${logdir}/steam" ]; then
if ! ln -nfs "${HOME}/.steam/steam/logs" "${logdir}/steam"; then
fn_print_fail_eol_nl
Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/install_server_dir.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ echo -e ""
echo -e "${bold}${lightyellow}Server Directory${default}"
echo -e "${bold}=================================${default}"
fn_sleep_time
echo -en "creating serverfiles directory [ ${serverfiles} ]"
echo -en "creating serverfiles directory [ ${italic}${serverfiles}${default} ]"

if [ -d "${serverfiles}" ]; then
fn_print_skip_eol_nl
Expand Down

0 comments on commit 17b0efd

Please sign in to comment.