f26dcd59a2
I saw kalev's slides reference `rpm-ostree unlock`; this patch makes it exist. In general, people have a hard time (understandably) grasping the distinction between ostree and rpm-ostree; along with the goal of making ostree really "libostree", let's start wrapping more commands where it makes sense. I also took this opportunity to have a more descriptive name; it's important to note that it *doesn't* overlay `/etc`, `/var`, or `/boot` for example. Closes: #1233 Approved by: jlebon
62 lines
2.2 KiB
C
62 lines
2.2 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
|
*
|
|
* Copyright (C) 2018 Colin Walters <walters@verbum.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published
|
|
* by the Free Software Foundation; either version 2 of the licence or (at
|
|
* your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General
|
|
* Public License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
|
#include <glib-unix.h>
|
|
#include <gio/gio.h>
|
|
|
|
#include "rpmostree-builtins.h"
|
|
#include "rpmostree-libbuiltin.h"
|
|
|
|
#include <libglnx.h>
|
|
|
|
static GOptionEntry option_entries[] = {
|
|
{ NULL }
|
|
};
|
|
|
|
gboolean
|
|
rpmostree_builtin_usroverlay (int argc,
|
|
char **argv,
|
|
RpmOstreeCommandInvocation *invocation,
|
|
GCancellable *cancellable,
|
|
GError **error)
|
|
{
|
|
g_autoptr(GOptionContext) context = g_option_context_new ("");
|
|
glnx_unref_object RPMOSTreeSysroot *sysroot_proxy = NULL;
|
|
_cleanup_peer_ GPid peer_pid = 0;
|
|
|
|
if (!rpmostree_option_context_parse (context,
|
|
option_entries,
|
|
&argc, &argv,
|
|
invocation,
|
|
cancellable,
|
|
NULL, NULL,
|
|
&sysroot_proxy,
|
|
&peer_pid,
|
|
NULL,
|
|
error))
|
|
return FALSE;
|
|
|
|
execlp ("ostree", "ostree", "admin", "unlock", NULL);
|
|
return glnx_throw_errno_prefix (error, "execvp(ostree admin unlock)");
|
|
}
|