repo: Handle "file" remotes in ostree_repo_remote_get_gpg_verify()

This commit is contained in:
Matthew Barnes 2015-06-06 16:32:45 -04:00 committed by Giuseppe Scrivano
parent e592faec43
commit d4111aeac0
2 changed files with 17 additions and 10 deletions

View File

@ -1673,19 +1673,15 @@ ostree_repo_pull_with_options (OstreeRepo *self,
if (_ostree_repo_remote_name_is_file (remote_name_or_baseurl))
{
baseurl = g_strdup (remote_name_or_baseurl);
/* For compatibility with pull-local, don't gpg verify local
* pulls.
*/
pull_data->gpg_verify = FALSE;
}
else
{
pull_data->remote_name = g_strdup (remote_name_or_baseurl);
}
if (!ostree_repo_remote_get_gpg_verify (self, remote_name_or_baseurl,
&pull_data->gpg_verify, error))
goto out;
}
pull_data->phase = OSTREE_PULL_PHASE_FETCHING_REFS;

View File

@ -1248,6 +1248,17 @@ ostree_repo_remote_get_gpg_verify (OstreeRepo *self,
gboolean *out_gpg_verify,
GError **error)
{
g_return_val_if_fail (OSTREE_IS_REPO (self), FALSE);
g_return_val_if_fail (name != NULL, FALSE);
/* For compatibility with pull-local, don't GPG verify file:// URIs. */
if (_ostree_repo_remote_name_is_file (name))
{
if (out_gpg_verify != NULL)
*out_gpg_verify = FALSE;
return TRUE;
}
return _ostree_repo_get_remote_boolean_option (self, name, "gpg-verify",
TRUE, out_gpg_verify, error);
}