blob: 868969ba13ee72a7270054bfc186ceecb6f7cca2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#include <config.h>
#include "application.h"
#include "gsm_pkexec.h"
#include "util.h"
gboolean gsm_pkexec_create_root_password_dialog(const char *command)
{
gboolean ret = FALSE;
gint *exit_status = NULL;
GError *error = NULL;
gchar *command_line = g_strdup_printf("pkexec --disable-internal-agent %s/gsm-%s",
GSM_LIBEXEC_DIR, command);
if (!g_spawn_command_line_sync(command_line, NULL, NULL, exit_status, &error)) {
g_critical("Could not run pkexec(\"%s\") : %s\n",
command, error->message);
g_error_free(error);
}
else
{
g_debug("pkexec did fine\n");
ret = TRUE;
}
g_free (command_line);
return ret;
}
gboolean
procman_has_pkexec(void)
{
return g_file_test("/usr/bin/pkexec", G_FILE_TEST_EXISTS);
}
|