diff --git a/man/ostree.repo-config.xml b/man/ostree.repo-config.xml index 49044b46..3ea24486 100644 --- a/man/ostree.repo-config.xml +++ b/man/ostree.repo-config.xml @@ -225,8 +225,9 @@ Boston, MA 02111-1307, USA. of finders isn't explicitly specified, either by a consumer of libostree API or on the command line. Possible values: config, lan, and - mount (or any combination thereof). If - unset, this defaults to config;lan;mount;. + mount (or any combination thereof). If unset, this + defaults to config;mount; (since the LAN finder is + costly). diff --git a/src/libostree/ostree-repo.c b/src/libostree/ostree-repo.c index 18fb7733..fe095057 100644 --- a/src/libostree/ostree-repo.c +++ b/src/libostree/ostree-repo.c @@ -2967,7 +2967,7 @@ reload_core_config (OstreeRepo *self, /* Fall back to a default set of finders */ if (configured_finders == NULL) - configured_finders = g_strsplit ("config;lan;mount", ";", -1); + configured_finders = g_strsplit ("config;mount", ";", -1); g_clear_pointer (&self->repo_finders, g_strfreev); self->repo_finders = g_steal_pointer (&configured_finders);