diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-04-11 02:04:46 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-04-11 02:04:46 +0200 |
commit | 04ebb5956719e3e301e1c08443c496ad97399544 (patch) | |
tree | ef0bf3f6a37d48e688c2aff6cd3c77c9c7a7dfad /Makefile.am | |
parent | 7e59bfcb18bcfdb82fa1f197c935bb15a22aa582 (diff) |
shutdownd: rework interface, allow subscribing to scheduled shutdowns
This extends the shutdownd interface to expose schedule shutdown
information in /run/systemd/shutdown/schedule.
This also cleans up the shutdownd protocol and documents it in a header
file sd-shutdown.h.
This is supposed to be used by client code that wants to control and
monitor scheduled shutdown.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 0aebeb2d98..d2dfc9cf77 100644 --- a/Makefile.am +++ b/Makefile.am @@ -761,7 +761,6 @@ libsystemd_core_la_SOURCES = \ src/bus-errors.h \ src/cgroup-show.h \ src/build.h \ - src/shutdownd.h \ src/umount.h \ src/ask-password-api.h \ src/sysfs-show.h \ @@ -934,9 +933,13 @@ systemd_shutdownd_SOURCES = \ src/shutdownd.c systemd_shutdownd_LDADD = \ - libsystemd-shared.la \ + libsystemd-shared-selinux.la \ libsystemd-daemon.la +pkginclude_HEADERS += \ + src/systemd/sd-shutdown.h + +# ------------------------------------------------------------------------------ systemd_shutdown_SOURCES = \ src/mount-setup.c \ src/umount.c \ |