Skip to content

Commit

Permalink
fastdl
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Oct 6, 2024
1 parent 5cefca9 commit d09ec7a
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions lgsm/modules/command_console.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ else
echo -e "* Interactive output: ${red}unknown${default}"
fi
echo ""
fn_print_information_nl "Press \"CTRL+b\" then \"d\" to exit console."
fn_print_warning_nl "Do NOT press CTRL+c to exit."
fn_print_information_nl "Press ${italic}\"CTRL+b\"${default} then ${italic}\"d\"${default} to exit console."
fn_print_warning_nl "Do ${underline}NOT${default} press CTRL+c to exit."
echo -e ""
echo -e "${italic}https://docs.linuxgsm.com/commands/console${default}"
if ! fn_prompt_yn "Continue?" Y; then
Expand Down
52 changes: 26 additions & 26 deletions lgsm/modules/command_fastdl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Author: Daniel Gibbs
# Contributors: https://linuxgsm.com/contrib
# Website: https://linuxgsm.com
# Description: Creates a FastDL directory.
# Description: Creates a Fastdl directory.

commandname="FASTDL"
commandaction="Fastdl"
Expand All @@ -30,16 +30,16 @@ fi

# Header
fn_print_header
echo -e "More info: https://docs.linuxgsm.com/commands/fastdl"
echo -e "More info: ${italic}https://docs.linuxgsm.com/commands/fastdl"
echo -e ""

# Prompts user for FastDL creation settings.
echo -e "${commandaction} setup"
# Prompts user for Fastdl creation settings.
echo -e "${bold}${lightyellow}${commandaction} Setup"
fn_messages_separator

# Prompt for clearing old files if directory was already here.
if [ -d "${fastdldir}" ]; then
fn_print_warning_nl "FastDL directory already exists."
fn_print_warning_nl "Fastdl directory already exists."
echo -e "${fastdldir}"
echo -e ""
if fn_prompt_yn "Overwrite existing directory?" Y; then
Expand All @@ -63,26 +63,26 @@ fi

# Clears any fastdl directory content.
fn_clear_old_fastdl() {
# Clearing old FastDL.
# Clearing old Fastdl.
if [ -d "${fastdldir}" ]; then
echo -en "clearing existing FastDL directory ${fastdldir}..."
echo -en "clearing existing Fastdl directory ${fastdldir}"
rm -rf "${fastdldir:?}"
exitcode=$?
if [ "${exitcode}" != 0 ]; then
fn_print_fail_eol_nl
fn_script_log_fail "Clearing existing FastDL directory ${fastdldir}"
fn_script_log_fail "Clearing existing Fastdl directory ${fastdldir}"
core_exit.sh
else
fn_print_ok_eol_nl
fn_script_log_pass "Clearing existing FastDL directory ${fastdldir}"
fn_script_log_pass "Clearing existing Fastdl directory ${fastdldir}"
fi
fi
}

fn_fastdl_dirs() {
# Check and create directories.
if [ ! -d "${webdir}" ]; then
echo -en "creating web directory ${webdir}..."
echo -en "creating web directory ${webdir}"
mkdir -p "${webdir}"
exitcode=$?
if [ "${exitcode}" != 0 ]; then
Expand All @@ -95,7 +95,7 @@ fn_fastdl_dirs() {
fi
fi
if [ ! -d "${fastdldir}" ]; then
echo -en "creating fastdl directory ${fastdldir}..."
echo -en "creating fastdl directory ${fastdldir}"
mkdir -p "${fastdldir}"
exitcode=$?
if [ "${exitcode}" != 0 ]; then
Expand Down Expand Up @@ -158,7 +158,7 @@ fn_fastdl_preview() {
((fileswc++))
tput rc
tput el
echo -e "gathering ${allowed_extention} : ${fileswc}..."
echo -e "gathering ${allowed_extention} : ${fileswc}"
echo -e "${ext}" >> "${tmpdir}/fastdl_files_to_compress.txt"
done < <(find . -type f -iname "${allowed_extention}")
if [ ${fileswc} != 0 ]; then
Expand Down Expand Up @@ -190,12 +190,12 @@ fn_fastdl_preview() {
((fileswc++))
tput rc
tput el
echo -e "gathering ${directory} ${allowed_extention} : ${fileswc}..."
echo -e "gathering ${directory} ${allowed_extention} : ${fileswc}"
echo -e "${ext}" >> "${tmpdir}/fastdl_files_to_compress.txt"
done < <(find "${systemdir}/${directory}" -type f -iname "${allowed_extention}")
tput rc
tput el
echo -e "gathering ${directory} ${allowed_extention} : ${fileswc}..."
echo -e "gathering ${directory} ${allowed_extention} : ${fileswc}"
if [ ${fileswc} != 0 ]; then
fn_print_ok_eol_nl
else
Expand Down Expand Up @@ -244,7 +244,7 @@ fn_fastdl_gmod() {
((fileswc++))
tput rc
tput el
echo -e "copying ${allowed_extention} : ${fileswc}..."
echo -e "copying ${allowed_extention} : ${fileswc}"
cp --parents "${fastdlfile}" "${fastdldir}"
exitcode=$?
if [ "${exitcode}" != 0 ]; then
Expand All @@ -259,7 +259,7 @@ fn_fastdl_gmod() {
fn_print_ok_eol_nl
fi
done
# Correct addons directory structure for FastDL.
# Correct addons directory structure for Fastdl.
if [ -d "${fastdldir}/addons" ]; then
echo -en "updating addons file structure..."
cp -Rf "${fastdldir}"/addons/*/* "${fastdldir}"
Expand Down Expand Up @@ -332,7 +332,7 @@ fn_fastdl_source() {
((fileswc++))
tput rc
tput el
echo -e "copying ${directory} ${allowed_extention} : ${fileswc}..."
echo -e "copying ${directory} ${allowed_extention} : ${fileswc}"
fn_sleep_time_1
# get relative path of file in the dir
tmprelfilepath="${fastdlfile#"${systemdir}/"}"
Expand Down Expand Up @@ -361,7 +361,7 @@ fn_fastdl_source() {

# Builds the fastdl directory content.
fn_fastdl_build() {
# Copy all needed files for FastDL.
# Copy all needed files for Fastdl.
echo -e "copying files to ${fastdldir}"
fn_script_log_info "Copying files to ${fastdldir}"
if [ "${shortname}" == "gmod" ]; then
Expand All @@ -372,11 +372,11 @@ fn_fastdl_build() {
fi
}

# Generate lua file that will force download any file into the FastDL directory.
# Generate lua file that will force download any file into the Fastdl directory.
fn_fastdl_gmod_dl_enforcer() {
# Clear old lua file.
if [ -f "${luafastdlfullpath}" ]; then
echo -en "removing existing download enforcer: ${luafastdlfile}..."
echo -en "removing existing download enforcer: ${luafastdlfile}"
rm -f "${luafastdlfullpath:?}"
exitcode=$?
if [ "${exitcode}" != 0 ]; then
Expand All @@ -390,7 +390,7 @@ fn_fastdl_gmod_dl_enforcer() {
fi
# Generate new one if user said yes.
if [ "${luaresource}" == "on" ]; then
echo -en "creating new download enforcer: ${luafastdlfile}..."
echo -en "creating new download enforcer: ${luafastdlfile}"
touch "${luafastdlfullpath}"
# Read all filenames and put them into a lua file at the right path.
while read -r line; do
Expand All @@ -408,10 +408,10 @@ fn_fastdl_gmod_dl_enforcer() {
fi
}

# Compresses FastDL files using bzip2.
# Compresses Fastdl files using bzip2.
fn_fastdl_bzip2() {
while read -r filetocompress; do
echo -en "\r\033[Kcompressing ${filetocompress}..."
echo -en "\r\033[Kcompressing ${filetocompress}"
bzip2 -f "${filetocompress}"
exitcode=$?
if [ "${exitcode}" != 0 ]; then
Expand All @@ -433,9 +433,9 @@ fn_fastdl_dirs
fn_fastdl_build
fn_fastdl_bzip2
# Finished message.
echo -e "FastDL files are located in:"
echo -e "Fastdl files are located in:"
echo -e "${fastdldir}"
echo -e "FastDL completed"
fn_script_log_info "FastDL completed"
echo -e "Fastdl completed"
fn_script_log_info "Fastdl completed"

core_exit.sh
2 changes: 1 addition & 1 deletion lgsm/modules/command_send.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ if [ "${status}" != "0" ]; then
fi
echo ""
fn_print_dots "Sending command to console: \"${commandtosend}\""
tmux -L "${socketname}" send-keys -t "${sessionname}" "${commandtosend}" ENTER
fn_print_ok_nl "Sending command to console: \"${commandtosend}\""
tmux -L "${socketname}" send-keys -t "${sessionname}" "${commandtosend}" ENTER
fn_script_log_pass "Command \"${commandtosend}\" sent to console"
else
fn_print_error_nl "Server not running"
Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/install_squad_license.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ echo -e "Server license is an optional feature for ${gamename} server"
fn_script_log_info "Server license is an optional feature for ${gamename} server"

echo -e "Get more info and a server license here:"
echo -e "https://squad.fandom.com/wiki/Server_licensing"
echo -e "${italic}https://squad.fandom.com/wiki/Server_licensing"
fn_script_log_info "Get more info and a server license here:"
fn_script_log_info "https://squad.fandom.com/wiki/Server_licensing"
echo -e ""
Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/install_ut2k4_key.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo -e "${bold}${lightyellow}Enter ${gamename} CD Key${default}"
fn_messages_separator
echo -e "To get your server listed on the Master Server list"
echo -e "you must get a free CD key. Get a key here:"
echo -e "https://www.epicgames.com/unrealtournament/forums/cdkey.php?2004"
echo -e "${italic}https://www.epicgames.com/unrealtournament/forums/cdkey.php?2004"
echo -e ""
if [ -z "${autoinstall}" ]; then
echo -e "Once you have the key enter it below"
Expand Down

0 comments on commit d09ec7a

Please sign in to comment.