diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-16 15:37:52 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-16 15:37:52 +0200 |
commit | f61448083198dc0e4e0d19a916bcd478336cc85d (patch) | |
tree | e9325f22f715d5788b46e5ecbeb6e2fc94a73010 /Makefile.am | |
parent | 6e200d55ae538fc29360cdaa9863f30cdddf58f3 (diff) |
systemctl: add support for delayed shutdown, similar to sysv in style
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 384778ee60..07204a9f0f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -71,7 +71,8 @@ rootlibexec_PROGRAMS = \ systemd-cgroups-agent \ systemd-initctl \ systemd-update-utmp \ - systemd-random-seed + systemd-random-seed \ + systemd-shutdownd noinst_PROGRAMS = \ test-engine \ @@ -137,6 +138,7 @@ dist_systemunit_DATA = \ units/dbus.target \ units/systemd-initctl.socket \ units/systemd-logger.socket \ + units/systemd-shutdownd.socket \ units/dev-hugepages.automount \ units/dev-hugepages.mount \ units/dev-mqueue.automount \ @@ -161,6 +163,7 @@ nodist_systemunit_DATA = \ units/multi-user.target \ units/systemd-initctl.service \ units/systemd-logger.service \ + units/systemd-shutdownd.service \ units/systemd-update-utmp-runlevel.service \ units/systemd-update-utmp-shutdown.service \ units/systemd-random-seed-save.service \ @@ -182,6 +185,7 @@ EXTRA_DIST = \ units/remote-fs.target.m4 \ units/systemd-initctl.service.in \ units/systemd-logger.service.in \ + units/systemd-shutdownd.service.in \ units/systemd-update-utmp-runlevel.service.in \ units/systemd-update-utmp-shutdown.service.in \ units/systemd-random-seed-save.service.in \ @@ -346,7 +350,8 @@ EXTRA_DIST += \ src/bus-errors.h \ src/cgroup-show.h \ src/utmp-wtmp.h \ - src/build.h + src/build.h \ + src/shutdownd.h MANPAGES = \ man/systemd.1 \ @@ -529,6 +534,16 @@ systemd_random_seed_CFLAGS = \ systemd_random_seed_LDADD = \ libsystemd-basic.la +systemd_shutdownd_SOURCES = \ + src/sd-daemon.c \ + src/shutdownd.c + +systemd_shutdownd_CFLAGS = \ + $(AM_CFLAGS) + +systemd_shutdownd_LDADD = \ + libsystemd-basic.la + systemd_cgroups_agent_SOURCES = \ src/cgroups-agent.c \ src/dbus-common.c |