Airgap round 1

This commit is contained in:
Mike Reeves
2020-08-14 15:32:33 -04:00
parent 945bc5c6de
commit bac58abf3e
3 changed files with 84 additions and 33 deletions

View File

@@ -182,6 +182,22 @@ elif [ "$install_type" = 'IMPORT' ]; then
is_import=true
fi
# Say yes to the dress if its an ISO install
if [[ "$setup_type" == 'iso' ]]; then
is_iso=true
fi
#Check if this is an airgap install
if [[ $is_manager ]]; then
if [[ $is_iso ]]; then
whiptail_airgap
if [[ "$INTERWEBS" == 'AIRGAP' ]]; then
is_airgap=true
fi
fi
fi
if [[ $is_manager && $is_sensor ]]; then
check_requirements "standalone"
elif [[ $is_fleet_standalone ]]; then