From 4bb2357f77c875976de5e238a5783e4e136b37b5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 28 Sep 2010 03:44:22 +0200 Subject: [PATCH] units: add readahead unit files --- Makefile.am | 5 ++++- units/.gitignore | 2 ++ units/fedora/sysinit.service | 1 + units/remount-rootfs.service | 1 + units/sysctl.service | 1 + units/systemd-modules-load.service.in | 1 + units/systemd-random-seed-load.service.in | 1 + units/systemd-readahead-collect.service.in | 21 +++++++++++++++++++++ units/systemd-readahead-replay.service.in | 21 +++++++++++++++++++++ units/systemd-remount-api-vfs.service.in | 1 + units/systemd-vconsole-setup.service.in | 1 + units/tmpwatch.service | 2 +- 12 files changed, 56 insertions(+), 2 deletions(-) create mode 100644 units/systemd-readahead-collect.service.in create mode 100644 units/systemd-readahead-replay.service.in diff --git a/Makefile.am b/Makefile.am index 6b306073a..370a3c6ce 100644 --- a/Makefile.am +++ b/Makefile.am @@ -209,6 +209,8 @@ nodist_systemunit_DATA = \ units/systemd-update-utmp-shutdown.service \ units/systemd-random-seed-save.service \ units/systemd-random-seed-load.service \ + units/systemd-readahead-collect.service \ + units/systemd-readahead-replay.service \ units/syslog.target dist_sessionunit_DATA = \ @@ -236,6 +238,8 @@ EXTRA_DIST = \ units/systemd-update-utmp-shutdown.service.in \ units/systemd-random-seed-save.service.in \ units/systemd-random-seed-load.service.in \ + units/systemd-readahead-collect.service.in \ + units/systemd-readahead-replay.service.in \ units/syslog.target.in \ units/session/exit.service.in \ systemd.pc.in @@ -1149,4 +1153,3 @@ fedora: install rm /lib/systemd/system/local-fs.target.wants/var-run.mount rm /lib/systemd/system/local-fs.target.wants/var-lock.service rm /lib/systemd/system/local-fs.target.wants/var-lock.mount - rm /lib/systemd/system/local-fs.target.wants/remount-rootfs.service diff --git a/units/.gitignore b/units/.gitignore index 816eeb3c1..1ae1f96b1 100644 --- a/units/.gitignore +++ b/units/.gitignore @@ -1,3 +1,5 @@ +systemd-readahead-collect.service +systemd-readahead-replay.service serial-getty@.service systemd-kmsg-syslogd.service systemd-modules-load.service diff --git a/units/fedora/sysinit.service b/units/fedora/sysinit.service index 860d3a345..5e2846299 100644 --- a/units/fedora/sysinit.service +++ b/units/fedora/sysinit.service @@ -9,6 +9,7 @@ Description=System Initialization DefaultDependencies=no Conflicts=shutdown.target +After=systemd-readahead-collect.service systemd-readahead-replay.service Before=shutdown.target emergency.service emergency.target [Service] diff --git a/units/remount-rootfs.service b/units/remount-rootfs.service index 089e8b5a2..4ff3645e6 100644 --- a/units/remount-rootfs.service +++ b/units/remount-rootfs.service @@ -9,6 +9,7 @@ Description=Remount Root FS DefaultDependencies=no Conflicts=shutdown.target +After=systemd-readahead-collect.service systemd-readahead-replay.service fsck.target Before=shutdown.target local-fs.target [Service] diff --git a/units/sysctl.service b/units/sysctl.service index 2464a0791..72dbb1f56 100644 --- a/units/sysctl.service +++ b/units/sysctl.service @@ -9,6 +9,7 @@ Description=Apply Kernel Variables DefaultDependencies=no Conflicts=shutdown.target +After=systemd-readahead-collect.service systemd-readahead-replay.service Before=shutdown.target [Service] diff --git a/units/systemd-modules-load.service.in b/units/systemd-modules-load.service.in index d6a5fa69a..1eb49011f 100644 --- a/units/systemd-modules-load.service.in +++ b/units/systemd-modules-load.service.in @@ -9,6 +9,7 @@ Description=Load Kernel Modules DefaultDependencies=no Conflicts=shutdown.target +After=systemd-readahead-collect.service systemd-readahead-replay.service Before=shutdown.target [Service] diff --git a/units/systemd-random-seed-load.service.in b/units/systemd-random-seed-load.service.in index 93cba95a6..d03f9b841 100644 --- a/units/systemd-random-seed-load.service.in +++ b/units/systemd-random-seed-load.service.in @@ -11,6 +11,7 @@ DefaultDependencies=no Wants=local-fs.target After=local-fs.target Conflicts=shutdown.target +After=systemd-readahead-collect.service systemd-readahead-replay.service Before=shutdown.target [Service] diff --git a/units/systemd-readahead-collect.service.in b/units/systemd-readahead-collect.service.in new file mode 100644 index 000000000..c3fb2e644 --- /dev/null +++ b/units/systemd-readahead-collect.service.in @@ -0,0 +1,21 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=Collect Read-Ahead Data +DefaultDependencies=no +Conflicts=shutdown.target +Before=shutdown.target + +[Service] +Type=notify +ExecStart=@rootlibexecdir@/systemd-readahead-collect +RemainAfterExit=yes + +[Install] +WantedBy=default.target +Also=systemd-readahead-replay.service diff --git a/units/systemd-readahead-replay.service.in b/units/systemd-readahead-replay.service.in new file mode 100644 index 000000000..f6ca475ae --- /dev/null +++ b/units/systemd-readahead-replay.service.in @@ -0,0 +1,21 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=Replay Read-Ahead Data +DefaultDependencies=no +Conflicts=shutdown.target +Before=shutdown.target + +[Service] +Type=notify +ExecStart=@rootlibexecdir@/systemd-readahead-replay +RemainAfterExit=yes + +[Install] +WantedBy=default.target +Also=systemd-readahead-collect.service diff --git a/units/systemd-remount-api-vfs.service.in b/units/systemd-remount-api-vfs.service.in index 8ecf64f0e..87c8ccbf0 100644 --- a/units/systemd-remount-api-vfs.service.in +++ b/units/systemd-remount-api-vfs.service.in @@ -9,6 +9,7 @@ Description=Remount API VFS DefaultDependencies=no Conflicts=shutdown.target +After=systemd-readahead-collect.service systemd-readahead-replay.service Before=shutdown.target local-fs.target [Service] diff --git a/units/systemd-vconsole-setup.service.in b/units/systemd-vconsole-setup.service.in index 66df594ea..52e31e0bc 100644 --- a/units/systemd-vconsole-setup.service.in +++ b/units/systemd-vconsole-setup.service.in @@ -9,6 +9,7 @@ Description=Setup Virtual Console DefaultDependencies=no Conflicts=shutdown.target +After=systemd-readahead-collect.service systemd-readahead-replay.service Before=shutdown.target [Service] diff --git a/units/tmpwatch.service b/units/tmpwatch.service index e69a33c8a..8471ba15a 100644 --- a/units/tmpwatch.service +++ b/units/tmpwatch.service @@ -9,7 +9,7 @@ Description=Cleanup of Temporary Directories DefaultDependencies=no Wants=local-fs.target -After=local-fs.target +After=systemd-readahead-collect.service systemd-readahead-replay.service local-fs.target Before=poweroff.service reboot.service halt.service killall.service [Service] -- 2.30.2