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 896873f commit 00a2024Copy full SHA for 00a2024
libioc/Jail.py
@@ -1628,6 +1628,11 @@ def devfs_ruleset(self) -> libioc.DevfsRules.DevfsRuleset:
1628
f"add path {current_dataset_name}/* unhide"
1629
)
1630
1631
+ if self.config["allow_vmm"] is True:
1632
+ devfs_ruleset.append("add path vmm unhide")
1633
+ devfs_ruleset.append("add path vmm/* unhide")
1634
+ devfs_ruleset.append("add path nmdm* unhide")
1635
+
1636
# create if the final rule combination does not exist as ruleset
1637
if devfs_ruleset not in self.host.devfs:
1638
self.logger.verbose("New devfs ruleset combination")
0 commit comments