diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2017-02-26 13:51:50 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2017-02-26 13:51:50 -0600 |
commit | d4d0f25a4844ecaed43de913e8b729e7a2e894db (patch) | |
tree | 5f4c80f447862b3737d17d8bc825d38209a518ba /conf.d | |
parent | 1cb44092fce298004ab4c4547c6fbcac29c5997f (diff) |
net-online: updates to make the service more usable
- switch from attempting to ping the default gateway to a host outside
the local network, defaulting to google.com.
- along with this, change the name of the variable that requests a ping
test to include_ping_test so the meaning is more clear.
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/net-online | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/conf.d/net-online b/conf.d/net-online index aa2c76ba..9abe9ea4 100644 --- a/conf.d/net-online +++ b/conf.d/net-online @@ -3,10 +3,13 @@ # default is all interfaces that support ethernet. #interfaces="" -# This setting controls whether a ping to the default gateway is -# included in the test for network connectivity after all interfaces -# are active. -#ping_default_gateway=no +# This setting controls whether a ping test is included in the test for +# network connectivity after all interfaces are active. +#include_ping_test=no + +# This setting is the host to attempt to ping if the above is yes. +# The default is google.com. +#ping_test_host=some.host.name # The timeout setting controls how long the net-online service waits # for the network to be configured. |