mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-11 05:17:44 +03:00
network: rename GatewayOnlink= to GatewayOnLink=
But still GatewayOnlink= is supported for backward compatibility.
This commit is contained in:
parent
dc16327c48
commit
9cb8c55934
@ -1081,7 +1081,7 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><varname>GatewayOnlink=</varname></term>
|
||||
<term><varname>GatewayOnLink=</varname></term>
|
||||
<listitem>
|
||||
<para>Takes a boolean. If set to true, the kernel does not have
|
||||
to check if the gateway is reachable directly by the current machine (i.e., the kernel does
|
||||
|
@ -117,6 +117,7 @@ Route.Scope, config_parse_route_scope,
|
||||
Route.PreferredSource, config_parse_preferred_src, 0, 0
|
||||
Route.Table, config_parse_route_table, 0, 0
|
||||
Route.MTUBytes, config_parse_route_mtu, AF_UNSPEC, 0
|
||||
Route.GatewayOnLink, config_parse_gateway_onlink, 0, 0
|
||||
Route.GatewayOnlink, config_parse_gateway_onlink, 0, 0
|
||||
Route.IPv6Preference, config_parse_ipv6_route_preference, 0, 0
|
||||
Route.Protocol, config_parse_route_protocol, 0, 0
|
||||
|
@ -946,7 +946,7 @@ int config_parse_gateway_onlink(
|
||||
r = parse_boolean(rvalue);
|
||||
if (r < 0) {
|
||||
log_syntax(unit, LOG_ERR, filename, line, r,
|
||||
"Could not parse gateway onlink \"%s\", ignoring assignment: %m", rvalue);
|
||||
"Could not parse %s=\"%s\", ignoring assignment: %m", lvalue, rvalue);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -60,6 +60,7 @@ Protocol=
|
||||
Table=
|
||||
Gateway=
|
||||
InitialAdvertisedReceiveWindow=
|
||||
GatewayOnLink=
|
||||
GatewayOnlink=
|
||||
Type=
|
||||
InitialCongestionWindow=
|
||||
|
@ -409,7 +409,7 @@ From=
|
||||
FwMark=
|
||||
GVRP=
|
||||
Gateway=
|
||||
GatewayOnlink=
|
||||
GatewayOnLink=
|
||||
GenericReceiveOffload=
|
||||
GenericSegmentationOffload=
|
||||
GratuitousARP=
|
||||
|
@ -10,4 +10,4 @@ Scope=link
|
||||
|
||||
[Route]
|
||||
Gateway=149.10.125.65
|
||||
GatewayOnlink=true
|
||||
GatewayOnLink=true
|
||||
|
Loading…
Reference in New Issue
Block a user