]> git.proxmox.com Git - pve-installer.git/commitdiff
move dns into network section in runtime info
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 19 Jun 2023 10:16:35 +0000 (12:16 +0200)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 19 Jun 2023 11:27:53 +0000 (13:27 +0200)
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
Proxmox/Install/RunEnv.pm

index 87eeb9988ec38a20ad475a62e5779c878b183c72..49f0ad7efc054d0dfd4c72fdbf5b6d552ba2d9a2 100644 (file)
@@ -208,8 +208,8 @@ my sub detect_country_tracing_to : prototype($$) {
 #     network => {
 #         interfaces => <see query_netdevs()>,
 #         routes => <see query_routes()>,
+#         dns => <see query_dns()>,
 #     },
-#     dns => <see query_dns()>,
 # }
 sub query_installation_environment : prototype() {
     my $output = {};
@@ -220,8 +220,8 @@ sub query_installation_environment : prototype() {
     $output->{network} = {
        interfaces => query_netdevs(),
        routes => $routes,
+       dns => query_dns(),
     };
-    $output->{dns} = query_dns();
 
     my $err;
     my $country;