2017-11-18 19:35:03 +03:00
# SPDX-License-Identifier: LGPL-2.1+
#
2013-04-11 23:14:40 +04:00
# 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.
[Unit]
2014-03-06 07:51:11 +04:00
Description = Create Static Device Nodes in /dev
2013-04-23 11:56:32 +04:00
Documentation = man:tmpfiles.d(5) man:systemd-tmpfiles(8)
2013-04-11 23:14:40 +04:00
DefaultDependencies = no
2014-06-16 01:42:53 +04:00
Conflicts = shutdown.target
2014-08-26 23:17:22 +04:00
After = systemd-sysusers.service
2014-06-16 01:42:53 +04:00
Before = sysinit.target local-fs-pre.target systemd-udevd.service shutdown.target
2014-07-04 05:07:20 +04:00
ConditionCapability = CAP_SYS_MODULE
2013-04-11 23:14:40 +04:00
[Service]
Type = oneshot
2013-07-22 19:10:15 +04:00
RemainAfterExit = yes
2014-10-27 19:15:42 +03:00
ExecStart = @rootbindir@/systemd-tmpfiles --prefix=/dev --create --boot
units: use SuccessExitStatus to ignore syntax errors in tmpfiles
This makes sense from the point of view of the whole distribution:
if there are some specific files that have syntax problems, or unknown
users or groups, or use unsupported features, failing the whole service
is not useful.
In particular, services with tmpfiles --boot should not be started after boot.
The premise of --boot is that there are actions which are only safe to do once
during boot, because the state evolves later through other means and re-running
the boot-time setup would destroy it. If services with --boot fail in the
initial transaction, they would be re-run later on when a unit which
(indirectly) depends on them is started, causing problems.
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1507501.
(If we had a mode where a service would at most run once, and would not be
started in subsequent transactions, that'd be a good additional safeguard.
Using ExecStart=-... is a bit like that, but it causes all failure to be
ignored, which is too big of a hammer.)
2017-11-22 16:18:25 +03:00
SuccessExitStatus = 65