1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-06 12:33:01 +02:00

Fallback to manual mode if mods exceed /tmp space

This commit is contained in:
aclist 2022-06-18 00:35:55 +09:00 committed by GitHub
parent 6a9e4f547d
commit e289a3fc43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
#!/bin/bash
set -eo pipefail
version=0.4.0
version=0.4.1
release_url="https://raw.githubusercontent.com/aclist/dztui/main/dztui.sh"
aid=221100
game="dayz"
@ -236,11 +236,15 @@ failed_mod_check(){
disksize=$(df $staging_dir --output=avail | tail -n1)
bytewise=$((disksize * 1024))
hr=$(echo $(numfmt --to=iec --format "%8.1f" $bytewise $totalmodsize) | sed 's/ /\//')
if [[ $totalmodsize -gt $bytewise ]]; then
printf "[ERROR] Not enough space to install mods: %s\n" $hr
return
if [[ $auto_install_mods -eq 1 ]]; then
if [[ $totalmodsize -gt $bytewise ]]; then
printf "[ERROR] Not enough space in /tmp to automatically stage mods: %s\n" $hr
manual_mod_install
else
auto_mod_install
fi
fi
[[ $auto_install_mods -eq 1 ]] && auto_mod_install || manual_mod_install
}
passed_mod_check(){
printf "[INFO] Mod check passed\n"