2022-10-26 08:02:14 +02:00
|
|
|
/* SPDX-License-Identifier: MIT-0 */
|
2021-10-01 11:44:33 +01:00
|
|
|
|
2018-07-24 23:23:29 +02:00
|
|
|
#include <systemd/sd-bus.h>
|
|
|
|
#define _cleanup_(f) __attribute__((cleanup(f)))
|
|
|
|
|
|
|
|
int send_unit_files_changed(sd_bus *bus) {
|
|
|
|
_cleanup_(sd_bus_message_unrefp) sd_bus_message *message = NULL;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = sd_bus_message_new_signal(bus, &message,
|
|
|
|
"/org/freedesktop/systemd1",
|
|
|
|
"org.freedesktop.systemd1.Manager",
|
|
|
|
"UnitFilesChanged");
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return sd_bus_send(bus, message, NULL);
|
|
|
|
}
|