Vars refactor: Replace allcores with CORES_HOST
This commit is contained in:
parent
bd987f55d2
commit
62b6286564
6
quickemu
6
quickemu
@ -191,10 +191,10 @@ function vm_boot() {
|
||||
fi
|
||||
|
||||
local cores="1"
|
||||
local allcores=$(nproc --all)
|
||||
if [ ${allcores} -ge 8 ]; then
|
||||
local CORES_HOST=$(nproc --all)
|
||||
if [ ${CORES_HOST} -ge 8 ]; then
|
||||
cores="4"
|
||||
elif [ ${allcores} -ge 4 ]; then
|
||||
elif [ ${CORES_HOST} -ge 4 ]; then
|
||||
cores="2"
|
||||
fi
|
||||
echo " - CPU: ${cores} Core(s)"
|
||||
|
Loading…
Reference in New Issue
Block a user