diff options
Diffstat (limited to 'units')
-rw-r--r-- | units/.gitignore | 1 | ||||
-rw-r--r-- | units/systemd-random-seed-load.service.in | 3 | ||||
-rw-r--r-- | units/systemd-tmpfiles.service.in | 18 |
3 files changed, 20 insertions, 2 deletions
diff --git a/units/.gitignore b/units/.gitignore index 1ae1f96b11..1b5b12256d 100644 --- a/units/.gitignore +++ b/units/.gitignore @@ -1,3 +1,4 @@ +systemd-tmpfiles.service systemd-readahead-collect.service systemd-readahead-replay.service serial-getty@.service diff --git a/units/systemd-random-seed-load.service.in b/units/systemd-random-seed-load.service.in index d03f9b841b..b103f52007 100644 --- a/units/systemd-random-seed-load.service.in +++ b/units/systemd-random-seed-load.service.in @@ -9,9 +9,8 @@ Description=Load Random Seed DefaultDependencies=no Wants=local-fs.target -After=local-fs.target Conflicts=shutdown.target -After=systemd-readahead-collect.service systemd-readahead-replay.service +After=systemd-readahead-collect.service systemd-readahead-replay.service local-fs.target Before=shutdown.target [Service] diff --git a/units/systemd-tmpfiles.service.in b/units/systemd-tmpfiles.service.in new file mode 100644 index 0000000000..f869195180 --- /dev/null +++ b/units/systemd-tmpfiles.service.in @@ -0,0 +1,18 @@ +# 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=Recreate Volatile Files and Directories +DefaultDependencies=no +Wants=local-fs.target +After=systemd-readahead-collect.service systemd-readahead-replay.service local-fs.target +Before=shutdown.target + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=@rootlibexecdir@/systemd-tmpfiles |