initrd-parse-etc.service 815 B

123456789101112131415161718192021222324
  1. # SPDX-License-Identifier: LGPL-2.1+
  2. #
  3. # This file is part of systemd.
  4. #
  5. # systemd is free software; you can redistribute it and/or modify it
  6. # under the terms of the GNU Lesser General Public License as published by
  7. # the Free Software Foundation; either version 2.1 of the License, or
  8. # (at your option) any later version.
  9. [Unit]
  10. Description=Reload Configuration from the Real Root
  11. DefaultDependencies=no
  12. Requires=initrd-root-fs.target
  13. After=initrd-root-fs.target
  14. OnFailure=emergency.target
  15. OnFailureJobMode=replace-irreversibly
  16. ConditionPathExists=/etc/initrd-release
  17. [Service]
  18. Type=oneshot
  19. ExecStartPre=-systemctl daemon-reload
  20. # we have to retrigger initrd-fs.target after daemon-reload
  21. ExecStart=-systemctl --no-block start initrd-fs.target
  22. ExecStart=systemctl --no-block start initrd-cleanup.service