diff options
-rw-r--r-- | move/move.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/move/move.pm b/move/move.pm index 0556eaecd..2af0d7d54 100644 --- a/move/move.pm +++ b/move/move.pm @@ -216,7 +216,12 @@ sub install2::startMove { #- automatic printer, timezone, network configs require install_steps_interactive; - install_steps_interactive::configureNetwork($o); + if (!any { /nfs/ } cat_('/proc/mounts')) { + install_steps_interactive::configureNetwork($o); + #- seems that applications have trouble with the loopback interface + #- after successful network configuration if we don't do that + run_program::run('/sbin/service', 'network', 'restart'); + } install_steps_interactive::summaryBefore($o); require install_any; |