1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-27 18:55:09 +03:00

manager: use sd_notify() to notify parent systemd that we have finished startup

This commit is contained in:
Lennart Poettering 2011-06-30 02:15:41 +02:00
parent 3b8bdddeff
commit 530345e782
2 changed files with 7 additions and 1 deletions

View File

@ -546,7 +546,8 @@ libsystemd_core_la_SOURCES = \
src/tcpwrap.c \
src/cgroup-util.c \
src/condition.c \
src/dbus-common.c
src/dbus-common.c \
src/sd-daemon.c
libsystemd_core_la_CFLAGS = \
$(AM_CFLAGS) \

View File

@ -58,6 +58,7 @@
#include "special.h"
#include "bus-errors.h"
#include "exit-status.h"
#include "sd-daemon.h"
/* As soon as 16 units are in our GC queue, make sure to run a gc sweep */
#define GC_QUEUE_ENTRIES_MAX 16
@ -2944,6 +2945,10 @@ void manager_check_finished(Manager *m) {
}
bus_broadcast_finished(m, kernel_usec, initrd_usec, userspace_usec, total_usec);
sd_notifyf(false,
"READY=1\nSTATUS=Startup finished in %s.",
format_timespan(sum, sizeof(sum), total_usec));
}
void manager_run_generators(Manager *m) {