mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-25 01:34:34 +03:00
libostree: Use ostree_repo_create() rather than spawning subprocess
We have API now, yay!
This commit is contained in:
parent
b88c4b5c1c
commit
c07c84cb6f
@ -206,12 +206,11 @@ ostree_sysroot_ensure_initialized (OstreeSysroot *self,
|
|||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
gs_unref_object GFile *dir = NULL;
|
gs_unref_object GFile *dir = NULL;
|
||||||
gs_unref_object GFile *ostree_dir = NULL;
|
gs_unref_object GFile *ostree_dir = NULL;
|
||||||
|
gs_unref_object GFile *repo_dir = NULL;
|
||||||
|
|
||||||
ostree_dir = g_file_get_child (self->path, "ostree");
|
ostree_dir = g_file_get_child (self->path, "ostree");
|
||||||
|
repo_dir = g_file_get_child (ostree_dir, "repo");
|
||||||
g_clear_object (&dir);
|
if (!gs_file_ensure_directory (repo_dir, TRUE, cancellable, error))
|
||||||
dir = g_file_get_child (ostree_dir, "repo");
|
|
||||||
if (!gs_file_ensure_directory (dir, TRUE, cancellable, error))
|
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
g_clear_object (&dir);
|
g_clear_object (&dir);
|
||||||
@ -223,16 +222,9 @@ ostree_sysroot_ensure_initialized (OstreeSysroot *self,
|
|||||||
dir = ot_gfile_get_child_build_path (ostree_dir, "repo", "objects", NULL);
|
dir = ot_gfile_get_child_build_path (ostree_dir, "repo", "objects", NULL);
|
||||||
if (!g_file_query_exists (dir, NULL))
|
if (!g_file_query_exists (dir, NULL))
|
||||||
{
|
{
|
||||||
gs_free char *opt_repo_arg = g_strdup_printf ("--repo=%s/repo",
|
gs_unref_object OstreeRepo *repo = ostree_repo_new (repo_dir);
|
||||||
gs_file_get_path_cached (ostree_dir));
|
if (!ostree_repo_create (repo, OSTREE_REPO_MODE_BARE, cancellable, error))
|
||||||
|
goto out;
|
||||||
if (!gs_subprocess_simple_run_sync (NULL, GS_SUBPROCESS_STREAM_DISPOSITION_NULL,
|
|
||||||
cancellable, error,
|
|
||||||
"ostree", opt_repo_arg, "init", NULL))
|
|
||||||
{
|
|
||||||
g_prefix_error (error, "Failed to initialize repository: ");
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user