chiark / gitweb /
Prep v221: Update and clean up build system to sync with upstream
[elogind.git] / src / cgroups-agent / cgroups-agent.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <stdlib.h>
23
24 #include "sd-bus.h"
25 #include "log.h"
26 #include "bus-util.h"
27
28 int main(int argc, char *argv[]) {
29         _cleanup_bus_flush_close_unref_ sd_bus *bus = NULL;
30         int r;
31
32         if (argc != 2) {
33                 log_error("Incorrect number of arguments.");
34                 return EXIT_FAILURE;
35         }
36
37         log_set_target(LOG_TARGET_AUTO);
38         log_parse_environment();
39         log_open();
40
41         /* Unlike in systemd where this has to use a private socket,
42            since logind doesn't associate control groups with services
43            and doesn't manage the dbus service, we can just use the
44            system bus.  */
45         r = sd_bus_open_system(&bus);
46         if (r < 0) {
47                 log_debug_errno(r, "Failed to open system bus: %m");
48                 return EXIT_FAILURE;
49         }
50
51         r = sd_bus_emit_signal(bus,
52                                "/org/freedesktop/systemd1/agent",
53                                "org.freedesktop.systemd1.Agent",
54                                "Released",
55                                "s", argv[1]);
56         if (r < 0) {
57                 log_debug_errno(r, "Failed to send signal message: %m");
58                 return EXIT_FAILURE;
59         }
60
61         return EXIT_SUCCESS;
62 }