mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-29 01:52:01 +00:00
20 lines
522 B
C
20 lines
522 B
C
/*
|
|
* Copyright (C) 2017-2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib.h>
|
|
|
|
gboolean fu_systemd_unit_check_exists (const gchar *unit,
|
|
GError **error);
|
|
gboolean fu_systemd_unit_stop (const gchar *unit,
|
|
GError **error);
|
|
gboolean fu_systemd_unit_enable (const gchar *unit,
|
|
GError **error);
|
|
gboolean fu_systemd_unit_disable (const gchar *unit,
|
|
GError **error);
|
|
gchar *fu_systemd_get_default_target (GError **error);
|