Browse Source

steamui changes

feature/dst-changes
Daniel Gibbs 6 months ago
parent
commit
981938d4f0
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 32
      lgsm/modules/core_steamcmd.sh

32
lgsm/modules/core_steamcmd.sh

@ -23,7 +23,7 @@ fn_check_steamcmd_user() {
# Checks if steamuser is setup. # Checks if steamuser is setup.
if [ "${steamuser}" == "username" ]; then if [ "${steamuser}" == "username" ]; then
fn_print_fail_nl "Steam login not set. Update steamuser in ${configdirserver}" fn_print_fail_nl "Steam login not set. Update steamuser in ${configdirserver}"
echo -e " * Change steamuser=\"username\" to a valid steam login." fn_print_nl " * Change steamuser=\"username\" to a valid steam login."
if [ -d "${lgsmlogdir}" ]; then if [ -d "${lgsmlogdir}" ]; then
fn_script_log_fail "Steam login not set. Update steamuser in ${configdirserver}" fn_script_log_fail "Steam login not set. Update steamuser in ${configdirserver}"
fi fi
@ -44,7 +44,7 @@ fn_check_steamcmd() {
# Only install if steamcmd package is missing or steamcmd dir is missing. # Only install if steamcmd package is missing or steamcmd dir is missing.
if [ ! -f "${steamcmddir}/steamcmd.sh" ] && [ -z "$(command -v steamcmd 2> /dev/null)" ]; then if [ ! -f "${steamcmddir}/steamcmd.sh" ] && [ -z "$(command -v steamcmd 2> /dev/null)" ]; then
if [ "${commandname}" == "INSTALL" ]; then if [ "${commandname}" == "INSTALL" ]; then
echo -e "install SteamCMD" fn_print_nl "install SteamCMD"
fn_install_steamcmd fn_install_steamcmd
else else
fn_print_warn_nl "SteamCMD is not installed" fn_print_warn_nl "SteamCMD is not installed"
@ -52,7 +52,7 @@ fn_check_steamcmd() {
fn_install_steamcmd fn_install_steamcmd
fi fi
elif [ "${commandname}" == "INSTALL" ]; then elif [ "${commandname}" == "INSTALL" ]; then
echo -en "install SteamCMD" fn_print "install SteamCMD"
fn_print_skip_eol_nl fn_print_skip_eol_nl
fi fi
} }
@ -214,18 +214,18 @@ fn_update_steamcmd_compare() {
# Create update lockfile. # Create update lockfile.
date '+%s' > "${lockdir:?}/update.lock" date '+%s' > "${lockdir:?}/update.lock"
fn_print_ok_nl "Checking for update: ${remotelocation}" fn_print_ok_nl "Checking for update: ${remotelocation}"
echo -en "\n" fn_print "\n"
echo -e "Update available" fn_print_nl "${bold}${underline}Update${default} available"
echo -e "* Local build: ${red}${localbuild}${default}" fn_print_nl "* Local build: ${red}${localbuild}${default}"
echo -e "* Remote build: ${green}${remotebuildversion}${default}" fn_print_nl "* Remote build: ${green}${remotebuildversion}${default}"
if [ -n "${branch}" ]; then if [ -n "${branch}" ]; then
echo -e "* Branch: ${branch}" fn_print_nl "* Branch: ${branch}"
fi fi
if [ -n "${betapassword}" ]; then if [ -n "${betapassword}" ]; then
echo -e "* Branch password: ${betapassword}" fn_print_nl "* Branch password: ${betapassword}"
fi fi
echo -e "https://steamdb.info/app/${appid}/" fn_print_nl "https://steamdb.info/app/${appid}/history"
echo -en "\n" fn_print "\n"
fn_script_log_info "Update available" fn_script_log_info "Update available"
fn_script_log_info "Local build: ${localbuild}" fn_script_log_info "Local build: ${localbuild}"
fn_script_log_info "Remote build: ${remotebuildversion}" fn_script_log_info "Remote build: ${remotebuildversion}"
@ -264,8 +264,8 @@ fn_update_steamcmd_compare() {
alert.sh alert.sh
else else
fn_print_ok_nl "Checking for update: ${remotelocation}" fn_print_ok_nl "Checking for update: ${remotelocation}"
echo -en "\n" fn_print "\n"
fn_print_nl "${bold}No ${underline}update${default} available" fn_print_nl "${bold}${underline}No update${default} available"
fn_print_nl "* Local build: ${green}${localbuild}${default}" fn_print_nl "* Local build: ${green}${localbuild}${default}"
fn_print_nl "* Remote build: ${green}${remotebuildversion}${default}" fn_print_nl "* Remote build: ${green}${remotebuildversion}${default}"
if [ -n "${branch}" ]; then if [ -n "${branch}" ]; then
@ -274,7 +274,7 @@ fn_update_steamcmd_compare() {
if [ -n "${betapassword}" ]; then if [ -n "${betapassword}" ]; then
fn_print_nl "* Branch password: ${betapassword}" fn_print_nl "* Branch password: ${betapassword}"
fi fi
fn_print_nl "https://steamdb.info/app/${appid}/" fn_print_nl "https://steamdb.info/app/${appid}/history"
fn_print "\n" fn_print "\n"
fn_script_log_info "No update available" fn_script_log_info "No update available"
fn_script_log_info "Local build: ${localbuild}" fn_script_log_info "Local build: ${localbuild}"
@ -309,9 +309,9 @@ fn_check_steamcmd_appmanifest() {
if [ "${appmanifestfilewc}" -ge "2" ]; then if [ "${appmanifestfilewc}" -ge "2" ]; then
fn_print_fail "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files" fn_print_fail "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files"
fn_script_log_fail "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files" fn_script_log_fail "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files"
echo -e "* Check user permissions" fn_print_nl "* Check user permissions"
for appfile in ${appmanifestfile}; do for appfile in ${appmanifestfile}; do
echo -e " ${appfile}" fn_print_nl " ${appfile}"
done done
core_exit.sh core_exit.sh
else else

Loading…
Cancel
Save