Do interactive app configuration before installing base system
This commit is contained in:
parent
cdbbf0de22
commit
6debd6b5f5
|
@ -1345,6 +1345,7 @@ function interactive_config {
|
|||
choose_static_ip
|
||||
choose_default_domain_name
|
||||
choose_email_address
|
||||
install_apps_interactive
|
||||
|
||||
# delete the temporary configuration file
|
||||
if [ -f temp.cfg ]; then
|
||||
|
|
|
@ -402,32 +402,36 @@ function remove_apps {
|
|||
update_installed_apps_list
|
||||
}
|
||||
|
||||
function install_apps_interactive {
|
||||
echo $"Interactive installer"
|
||||
app_index=0
|
||||
for a in "${APPS_AVAILABLE[@]}"
|
||||
do
|
||||
echo -n "${a}"
|
||||
if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
|
||||
echo -n $" not installed"
|
||||
if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
|
||||
echo -n $" chosen"
|
||||
# interactively obtain settings for this app
|
||||
if [[ $(function_exists install_interactive_${a}) == "1" ]]; then
|
||||
echo -n $" interactive"
|
||||
install_interactive_${a}
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
echo ""
|
||||
|
||||
app_index=$[app_index+1]
|
||||
done
|
||||
echo $"Interactive settings complete"
|
||||
}
|
||||
|
||||
function install_apps {
|
||||
is_interactive=$1
|
||||
|
||||
# interactive install configuration for each app
|
||||
if [ ${is_interactive} ]; then
|
||||
echo $"Interactive installer"
|
||||
app_index=0
|
||||
for a in "${APPS_AVAILABLE[@]}"
|
||||
do
|
||||
echo -n "${a}"
|
||||
if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
|
||||
echo -n $" not installed"
|
||||
if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
|
||||
echo -n $" chosen"
|
||||
# interactively obtain settings for this app
|
||||
if [[ $(function_exists install_interactive_${a}) == "1" ]]; then
|
||||
echo -n $" interactive"
|
||||
install_interactive_${a}
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
echo ""
|
||||
|
||||
app_index=$[app_index+1]
|
||||
done
|
||||
echo $"Interactive settings complete"
|
||||
install_apps_interactive
|
||||
fi
|
||||
|
||||
# now install the apps
|
||||
|
|
Loading…
Reference in New Issue