gboolean
ot_admin_builtin_init_fs (int argc, char **argv, GCancellable *cancellable, GError **error)
{
- g_autoptr(GOptionContext) context = NULL;
- g_autoptr(OstreeSysroot) sysroot = NULL;
- gboolean ret = FALSE;
- glnx_fd_close int root_dfd = -1;
- g_autoptr(OstreeSysroot) target_sysroot = NULL;
- guint i;
- const char *normal_toplevels[] = {"boot", "dev", "home", "proc", "run", "sys"};
-
- context = g_option_context_new ("PATH - Initialize a root filesystem");
+ g_autoptr(GOptionContext) context = g_option_context_new ("PATH - Initialize a root filesystem");
if (!ostree_admin_option_context_parse (context, options, &argc, &argv,
- OSTREE_ADMIN_BUILTIN_FLAG_SUPERUSER | OSTREE_ADMIN_BUILTIN_FLAG_UNLOCKED,
- &sysroot, cancellable, error))
- goto out;
+ OSTREE_ADMIN_BUILTIN_FLAG_SUPERUSER |
+ OSTREE_ADMIN_BUILTIN_FLAG_UNLOCKED |
+ OSTREE_ADMIN_BUILTIN_FLAG_NO_SYSROOT,
+ NULL, cancellable, error))
+ return FALSE;
if (argc < 2)
{
ot_util_usage_error (context, "PATH must be specified", error);
- goto out;
+ return FALSE;
}
- if (!glnx_opendirat (AT_FDCWD, argv[1], TRUE, &root_dfd, error))
- goto out;
- { g_autoptr(GFile) dir = g_file_new_for_path (argv[1]);
- target_sysroot = ostree_sysroot_new (dir);
- }
+ const char *sysroot_path = argv[1];
+
+ glnx_fd_close int root_dfd = -1;
+ if (!glnx_opendirat (AT_FDCWD, sysroot_path, TRUE, &root_dfd, error))
+ return FALSE;
- for (i = 0; i < G_N_ELEMENTS(normal_toplevels); i++)
+ const char *normal_toplevels[] = {"boot", "dev", "home", "proc", "run", "sys"};
+ for (guint i = 0; i < G_N_ELEMENTS (normal_toplevels); i++)
{
if (!glnx_shutil_mkdir_p_at (root_dfd, normal_toplevels[i], 0755,
cancellable, error))
- goto out;
+ return FALSE;
}
-
+
if (!glnx_shutil_mkdir_p_at (root_dfd, "root", 0700,
cancellable, error))
- goto out;
+ return FALSE;
if (!glnx_shutil_mkdir_p_at (root_dfd, "tmp", 01777,
cancellable, error))
- goto out;
+ return FALSE;
if (fchmodat (root_dfd, "tmp", 01777, 0) == -1)
{
glnx_set_prefix_error_from_errno (error, "chmod: %s", "tmp");
- goto out;
+ return FALSE;
}
+ g_autoptr(GFile) dir = g_file_new_for_path (sysroot_path);
+ g_autoptr(OstreeSysroot) sysroot = ostree_sysroot_new (dir);
+ if (!ostree_sysroot_ensure_initialized (sysroot, cancellable, error))
+ return FALSE;
- if (!ostree_sysroot_ensure_initialized (target_sysroot, cancellable, error))
- goto out;
-
- ret = TRUE;
- out:
- return ret;
+ return TRUE;
}