Skip to content

Commit a49cb31

Browse files
committed
use relative path for created device nodes
Signed-off-by: Zen <[email protected]>
1 parent f298262 commit a49cb31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ugrd/base/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'desultory'
2-
__version__ = '3.3.0'
2+
__version__ = '3.3.1'
33

44
from pathlib import Path
55
from typing import Union
@@ -309,7 +309,7 @@ def _process_nodes_multi(self, name: str, config: dict) -> None:
309309
raise ValueError("[%s] No minor specified" % name)
310310

311311
if 'path' not in config:
312-
config['path'] = f"/dev/{name}"
312+
config['path'] = f"dev/{name}"
313313
self.logger.debug("[%s] No path specified, assuming: %s" % (name, config['path']))
314314

315315
if 'mode' not in config:

0 commit comments

Comments
 (0)