[refactor] Delete check for network install since we check /nsm now

This commit is contained in:
William Wernert
2020-07-13 14:53:47 -04:00
parent 1cf0732991
commit 81c8185cb5

View File

@@ -420,7 +420,7 @@ check_requirements() {
if [[ "$node_type" == 'fleet' ]]; then req_mem=4; fi if [[ "$node_type" == 'fleet' ]]; then req_mem=4; fi
fi fi
if (( $(echo "$free_space_root < $req_storage" | bc -l) )) && [[ $setup_type == 'network' ]]; then if (( $(echo "$free_space_root < $req_storage" | bc -l) )); then
whiptail_requirements_error "disk space" "${free_space_root} GB" "${req_storage} GB" whiptail_requirements_error "disk space" "${free_space_root} GB" "${req_storage} GB"
fi fi