networks: First boot step for network topology wizard

Signed-off-by: Nektarios Katakis <iam@nektarioskatakis.xyz>
[sunil: Use the term 'network topology' consistently]
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Nektarios Katakis 2020-02-29 05:37:29 +00:00 committed by Sunil Mohan Adapa
parent 4dd1035cf3
commit 5fd3e95bdf
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2
2 changed files with 8 additions and 0 deletions

View File

@ -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',

View File

@ -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'),
]