diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:59:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:59:44 +0000 |
commit | fb31765cbe33890f325a87015507364156741321 (patch) | |
tree | 0c5cd12aee0a0a6a6e2d542520df5846859bd40d /src/gsm_gksu.cpp | |
parent | Initial commit. (diff) | |
download | gnome-system-monitor-fb31765cbe33890f325a87015507364156741321.tar.xz gnome-system-monitor-fb31765cbe33890f325a87015507364156741321.zip |
Adding upstream version 42.0.upstream/42.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/gsm_gksu.cpp')
-rw-r--r-- | src/gsm_gksu.cpp | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/gsm_gksu.cpp b/src/gsm_gksu.cpp new file mode 100644 index 0000000..d2146dd --- /dev/null +++ b/src/gsm_gksu.cpp @@ -0,0 +1,55 @@ +/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +#include <config.h> + +#include "application.h" +#include "gsm_gksu.h" +#include "util.h" + +static gboolean (*gksu_run)(const char *, GError **); + + +static void load_gksu(void) +{ + static gboolean init; + + if (init) + return; + + init = TRUE; + + load_symbols("libgksu2.so", + "gksu_run", &gksu_run, + NULL); +} + + + + + +gboolean gsm_gksu_create_root_password_dialog(const char *command) +{ + GError *e = NULL; + + /* Returns FALSE or TRUE on success, depends on version ... */ + gksu_run(command, &e); + + if (e) { + g_critical("Could not run gksu_run(\"%s\") : %s\n", + command, e->message); + g_error_free(e); + return FALSE; + } + + g_message("gksu_run did fine\n"); + return TRUE; +} + + + +gboolean +procman_has_gksu(void) +{ + load_gksu(); + return gksu_run != NULL; +} + |