Daniel Gibbs
6 months ago
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
2 changed files with
7 additions and
6 deletions
-
lgsm/modules/core_dl.sh
-
linuxgsm.sh
|
|
@ -277,11 +277,11 @@ fn_dl_extract() { |
|
|
|
# Trap to remove file download if canceled before completed. |
|
|
|
fn_fetch_trap() { |
|
|
|
echo -e "" |
|
|
|
echo -en "downloading ${local_filename}..." |
|
|
|
echo -en "downloading ${local_filename}" |
|
|
|
fn_print_canceled_eol_nl |
|
|
|
fn_script_log_info "Downloading ${local_filename}...CANCELED" |
|
|
|
rm -f "${local_filedir:?}/${local_filename}" |
|
|
|
echo -en "downloading ${local_filename}..." |
|
|
|
echo -en "downloading ${local_filename}" |
|
|
|
fn_print_removed_eol_nl |
|
|
|
fn_script_log_info "Downloading ${local_filename}...REMOVED" |
|
|
|
core_exit.sh |
|
|
|
|
|
@ -72,11 +72,11 @@ core_modules.sh() { |
|
|
|
# Fetches the core modules required before passed off to core_dl.sh. |
|
|
|
fn_bootstrap_fetch_trap() { |
|
|
|
echo -e "" |
|
|
|
echo -en "downloading ${local_filename}..." |
|
|
|
echo -en "downloading ${local_filename}" |
|
|
|
fn_print_canceled_eol_nl |
|
|
|
fn_script_log_info "Downloading ${local_filename}...CANCELED" |
|
|
|
rm -f "${local_filedir:?}/${local_filename}" |
|
|
|
echo -en "downloading ${local_filename}..." |
|
|
|
echo -en "downloading ${local_filename}" |
|
|
|
fn_print_removed_eol_nl |
|
|
|
fn_script_log_info "Downloading ${local_filename}...REMOVED" |
|
|
|
core_exit.sh |
|
|
@ -418,9 +418,10 @@ else |
|
|
|
fi |
|
|
|
if [ ! -f "${configdirserver}/_default.cfg" ]; then |
|
|
|
mkdir -p "${configdirserver}" |
|
|
|
echo -en "copying _default.cfg...\c" |
|
|
|
echo -en "copying _default.cfg\c" |
|
|
|
cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" |
|
|
|
if [ $? != 0 ]; then |
|
|
|
exitcode=$? |
|
|
|
if [ "${exitcode}" != 0 ]; then |
|
|
|
echo -e " ... FAIL" |
|
|
|
exit 1 |
|
|
|
else |
|
|
|