diff --git a/plinth/modules/networks/__init__.py b/plinth/modules/networks/__init__.py index 74005b15e..48f5f73ea 100644 --- a/plinth/modules/networks/__init__.py +++ b/plinth/modules/networks/__init__.py @@ -19,6 +19,11 @@ is_essential = True managed_packages = ['network-manager', 'batctl'] first_boot_steps = [ + { + 'id': 'network_topology_wizard', + 'url': 'networks:network-topology-first-boot', + 'order': 2, + }, { 'id': 'internet_connectivity_type_wizard', 'url': 'networks:internet-connection-type-first-boot', diff --git a/plinth/modules/networks/urls.py b/plinth/modules/networks/urls.py index 873a5e51e..db6629d66 100644 --- a/plinth/modules/networks/urls.py +++ b/plinth/modules/networks/urls.py @@ -39,4 +39,7 @@ urlpatterns = [ name='internet-connection-type-first-boot'), url(r'^sys/networks/network-topology/$', views.NetworkTopologyView.as_view(), name='network-topology'), + url(r'^sys/networks/firstboot/network-topology-first-boot/$', + views.NetworkTopologyFirstBootView.as_view(), + name='network-topology-first-boot'), ]