]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
40network/dhclient.conf: rename classless-routes to classless-static-routes 250/head
authorLukas Nykryn <lnykryn@redhat.com>
Thu, 13 Jul 2017 14:46:19 +0000 (16:46 +0200)
committerLukas Nykryn <lnykryn@redhat.com>
Thu, 13 Jul 2017 14:46:19 +0000 (16:46 +0200)
We tell dhclient to name 121 option "classless-routes",
but in dhclient-script we parse classless_static_routes.
So either have to change the configuration or the script.

And since dhclient uses by default classless_static_routes,
let's change the configuration

modules.d/40network/dhclient.conf

index a1739ce35a9c881ab47bc963ee295b860e9fbfa0..49266db030f10453687539132df6700aad687895 100644 (file)
@@ -1,6 +1,6 @@
 
-option classless-routes code 121 = array of unsigned integer 8;
+option classless-static-routes code 121 = array of unsigned integer 8;
 
 request subnet-mask, broadcast-address, time-offset, routers,
         domain-name, domain-name-servers, domain-search, host-name,
-        root-path, interface-mtu, classless-routes;
+        root-path, interface-mtu, classless-static-routes;