summaryrefslogtreecommitdiff
path: root/src/ostree/ot-admin-builtin-switch.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2014-01-19 11:28:30 -0500
committerColin Walters <walters@verbum.org>2014-01-19 11:28:30 -0500
commitd98eb901c4cf5b923a163aefdef0cdf1075af621 (patch)
treef82178cf68f4a0779d1f460ff4b9809333771db3 /src/ostree/ot-admin-builtin-switch.c
parent1a20ab44201b529d757f27164323c3036e5a5dd6 (diff)
downloadostree-d98eb901c4cf5b923a163aefdef0cdf1075af621.tar.gz
deploy/main: Unify some bits between admin-switch and admin-upgrade
Diffstat (limited to 'src/ostree/ot-admin-builtin-switch.c')
-rw-r--r--src/ostree/ot-admin-builtin-switch.c43
1 files changed, 14 insertions, 29 deletions
diff --git a/src/ostree/ot-admin-builtin-switch.c b/src/ostree/ot-admin-builtin-switch.c
index e524de85..d7446184 100644
--- a/src/ostree/ot-admin-builtin-switch.c
+++ b/src/ostree/ot-admin-builtin-switch.c
@@ -73,38 +73,13 @@ ot_admin_builtin_switch (int argc, char **argv, OstreeSysroot *sysroot, GCancell
if (!ostree_sysroot_load (sysroot, cancellable, error))
goto out;
- if (!ot_admin_require_booted_deployment_or_osname (sysroot, opt_osname,
- cancellable, error))
- goto out;
- merge_deployment = ostree_sysroot_get_merge_deployment (sysroot, opt_osname);
- if (merge_deployment == NULL)
- {
- g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
- "No previous deployment for OS '%s'", opt_osname);
- goto out;
- }
-
- deployment_path = ostree_sysroot_get_deployment_directory (sysroot, merge_deployment);
- deployment_origin_path = ostree_sysroot_get_deployment_origin_path (deployment_path);
-
if (!ostree_sysroot_get_repo (sysroot, &repo, cancellable, error))
goto out;
- origin = ostree_deployment_get_origin (merge_deployment);
- if (!origin)
- {
- g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
- "No origin known for current deployment");
- goto out;
- }
- origin_refspec = g_key_file_get_string (origin, "origin", "refspec", NULL);
- if (!origin_refspec)
- {
- g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
- "No origin/refspec in current deployment origin; cannot change via ostree");
- goto out;
- }
- if (!ostree_parse_refspec (origin_refspec, &origin_remote, &origin_ref, error))
+ if (!ot_admin_deploy_prepare (sysroot, opt_osname, &merge_deployment,
+ &origin_remote, &origin_ref,
+ &origin,
+ cancellable, error))
goto out;
if (strcmp (origin_ref, new_ref) == 0)
@@ -114,6 +89,16 @@ ot_admin_builtin_switch (int argc, char **argv, OstreeSysroot *sysroot, GCancell
goto out;
}
+ {
+ gs_free char *new_refspec = NULL;
+ if (origin_remote)
+ new_refspec = g_strconcat (origin_remote, ":", new_ref, NULL);
+ else
+ new_refspec = g_strdup (new_ref);
+ g_key_file_unref (origin);
+ origin = ostree_sysroot_origin_new_from_refspec (sysroot, new_refspec);
+ }
+
if (origin_remote)
{
OstreeRepoPullFlags pullflags = 0;