Browse Source
fix: startparameters set instead of parms and call function to eval parms once (#3340)
pull/3343/head
Christian
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
lgsm/functions/command_start.sh
-
linuxgsm.sh
|
|
@ -72,7 +72,7 @@ fn_start_tmux(){ |
|
|
|
echo "${version}" >> "${lockdir}/${selfname}.lock" |
|
|
|
echo "${port}" >> "${lockdir}/${selfname}.lock" |
|
|
|
cd "${executabledir}" || exit |
|
|
|
tmux new-session -d -x "${sessionwidth}" -y "${sessionheight}" -s "${sessionname}" ${preexecutable} ${executable} ${parms} 2> "${lgsmlogdir}/.${selfname}-tmux-error.tmp" |
|
|
|
tmux new-session -d -x "${sessionwidth}" -y "${sessionheight}" -s "${sessionname}" ${preexecutable} ${executable} ${startparameters} 2> "${lgsmlogdir}/.${selfname}-tmux-error.tmp" |
|
|
|
|
|
|
|
# Create logfile. |
|
|
|
touch "${consolelog}" |
|
|
|
|
|
@ -466,7 +466,7 @@ else |
|
|
|
eval startparameters="$(sed -nr 's/^ *startparameters=(.*)$/\1/p' "${configdirserver}/_default.cfg")" |
|
|
|
fi |
|
|
|
} |
|
|
|
|
|
|
|
fn_reload_startparameters |
|
|
|
# Load the linuxgsm.sh in to tmpdir. If missing download it. |
|
|
|
if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then |
|
|
|
fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" |
|
|
|