summaryrefslogtreecommitdiff
path: root/src/core/procedures
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/procedures')
-rw-r--r--src/core/procedures/base11
-rw-r--r--src/core/procedures/interactive17
2 files changed, 0 insertions, 28 deletions
diff --git a/src/core/procedures/base b/src/core/procedures/base
index b6f0ea4..ab95cea 100644
--- a/src/core/procedures/base
+++ b/src/core/procedures/base
@@ -142,17 +142,6 @@ worker_install_packages ()
installpkg
}
-
-worker_auto_network ()
-{
- if [ -f $RUNTIME_DIR/aif-network-settings ]
- then
- target_configure_network || return $?
- fi
- return 0
-}
-
-
worker_configure_system ()
{
preconfigure_target
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive
index 179866c..f499a4b 100644
--- a/src/core/procedures/interactive
+++ b/src/core/procedures/interactive
@@ -167,23 +167,6 @@ worker_install_bootloader ()
interactive_install_bootloader
}
-
-worker_auto_network ()
-{
- # if the user has been through networking setup, it may be useful to export the users' choices to the target system
- # networking setup could have happened in a separate process (eg partial-configure-network), so check if the settings file was created to be sure
- if [ -f $RUNTIME_DIR/aif-network-settings ]
- then
- ask_yesno "Do you want to use the network settings from the installer in rc.conf and resolv.conf?\n\nIf you used Proxy settings, they will be written to /etc/profile.d/proxy.sh" || return 0
- if ! target_configure_network
- then
- show_warning "Automatic network settings propagation failed" "Failed to import current network settings into target system"
- return 1
- fi
- fi
- return 0
-}
-
# override show_report because this procedure does not use phases, but it's own menu
show_report ()
{