From: Lennart Poettering Date: Thu, 12 Apr 2012 12:18:36 +0000 (+0200) Subject: shutdown: move shutdown to core since it replaces PID 1 X-Git-Tag: v183~365 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=146de8175e11c877908f20f8ed1b5a3805455c0a shutdown: move shutdown to core since it replaces PID 1 --- diff --git a/Makefile.am b/Makefile.am index 829db7e9e..54cc5096f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -946,9 +946,9 @@ pkginclude_HEADERS += \ # ------------------------------------------------------------------------------ systemd_shutdown_SOURCES = \ - src/umount.c \ - src/umount.h \ - src/shutdown.c + src/core/umount.c \ + src/core/umount.h \ + src/core/shutdown.c systemd_shutdown_LDADD = \ libsystemd-label.la \ diff --git a/src/shutdown.c b/src/core/shutdown.c similarity index 100% rename from src/shutdown.c rename to src/core/shutdown.c diff --git a/src/umount.c b/src/core/umount.c similarity index 100% rename from src/umount.c rename to src/core/umount.c diff --git a/src/umount.h b/src/core/umount.h similarity index 100% rename from src/umount.h rename to src/core/umount.h