mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
Instead, please use the kernel command line options with the same name. I am not sure these files are System V complieant or not, but at least they are very traditional way to control fsck or quotacheck. However, the concept of the files are really broken, especially for fsck. As when we want to fsck the root filesystem, we need to access the filessystem, but it may be broken... Let's drop such traditional ways to control fsck and quotacheck. We already support kernel command line options to control the behaviors. Maybe, also it is better to provide ways to control them by credentials.
25 lines
888 B
Plaintext
25 lines
888 B
Plaintext
# This file is part of systemd.
|
|
#
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# See tmpfiles.d(5) for details.
|
|
|
|
# The functionality provided by these files and directories has been replaced
|
|
# by newer interfaces. Their use is discouraged on legacy-free systems. This
|
|
# configuration is provided to maintain backward compatibility.
|
|
|
|
d /run/lock 0755 root root -
|
|
L /var/lock - - - - ../run/lock
|
|
{% if CREATE_LOG_DIRS %}
|
|
L$ /var/log/README - - - - ../..{{DOC_DIR}}/README.logs
|
|
{% endif %}
|
|
|
|
{% if HAVE_SYSV_COMPAT %}
|
|
# /run/lock/subsys is used for serializing SysV service execution, and
|
|
# hence without use on SysV-less systems.
|
|
d /run/lock/subsys 0755 root root -
|
|
{% endif %}
|