diff --git a/app/lib/wizard.js b/app/lib/wizard.js
index 16e4b364924767847b996858b3455ff3b0c8cd75..37961c9ac00fe2b28a9253faf56a42aaed18e0c5 100644
--- a/app/lib/wizard.js
+++ b/app/lib/wizard.js
@@ -269,7 +269,7 @@ function networkConfiguration(conf, done) {
         operations = operations.concat(getUseUPnPOperations(conf));
       }
 
-      async.waterfall(operations, next);
+      async.waterfall(operations.concat(getHostnameOperations(conf, false)), next);
     }
   ], done);
 }