We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 777f865 commit 7abf862Copy full SHA for 7abf862
src/ugrd/base/base.py
@@ -1,5 +1,5 @@
1
__author__ = "desultory"
2
-__version__ = "5.1.3"
+__version__ = "5.1.4"
3
4
from importlib.metadata import version
5
from pathlib import Path
@@ -11,7 +11,7 @@
11
def _validate_init_target(self) -> None:
12
if not self["init_target"].exists():
13
raise FileNotFoundError("init_target not found at: %s" % self["init_target"])
14
- if "systemd" in str(self["init_target"]):
+ if "systemd" in str(self["init_target"]) and "ugrd.fs.fakeudev" not in self["modules"]:
15
self.logger.warning("'ugrd.fs.fakeudev' may be required if systemd mounts stall on boot.")
16
17
0 commit comments