daemon: Rename transaction_livefs → transaction_apply_live

Continuing the renaming.
This commit is contained in:
Colin Walters 2021-02-12 21:07:21 +00:00 committed by OpenShift Merge Robot
parent ffe72d28ec
commit 29a2304fe2
3 changed files with 16 additions and 16 deletions

View File

@ -140,11 +140,11 @@ osexperimental_handle_live_fs (RPMOSTreeOSExperimental *interface,
&local_error))
goto out;
transaction = rpmostreed_transaction_new_livefs (invocation,
ot_sysroot,
arg_options,
cancellable,
&local_error);
transaction = rpmostreed_transaction_new_apply_live (invocation,
ot_sysroot,
arg_options,
cancellable,
&local_error);
if (transaction == NULL)
goto out;

View File

@ -107,11 +107,11 @@ livefs_transaction_init (LiveFsTransaction *self)
}
RpmostreedTransaction *
rpmostreed_transaction_new_livefs (GDBusMethodInvocation *invocation,
OstreeSysroot *sysroot,
GVariant *options,
GCancellable *cancellable,
GError **error)
rpmostreed_transaction_new_apply_live (GDBusMethodInvocation *invocation,
OstreeSysroot *sysroot,
GVariant *options,
GCancellable *cancellable,
GError **error)
{
g_assert (G_IS_DBUS_METHOD_INVOCATION (invocation));
g_assert (OSTREE_IS_SYSROOT (sysroot));

View File

@ -117,12 +117,12 @@ rpmostreed_transaction_new_cleanup (GDBusMethodInvocation *invocation,
GError **error);
RpmostreedTransaction *
rpmostreed_transaction_new_livefs (GDBusMethodInvocation *invocation,
OstreeSysroot *sysroot,
GVariant *options,
GCancellable *cancellable,
GError **error);
rpmostreed_transaction_new_apply_live (GDBusMethodInvocation *invocation,
OstreeSysroot *sysroot,
GVariant *options,
GCancellable *cancellable,
GError **error);
typedef enum {
RPMOSTREE_TRANSACTION_REFRESH_MD_FLAG_FORCE = (1 << 0),
} RpmOstreeTransactionRefreshMdFlags;