diff options
author | Devaev Maxim <[email protected]> | 2019-10-24 00:21:07 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-10-24 00:21:07 +0300 |
commit | 372bf2a4afc93726ad63090202b517c939a183d9 (patch) | |
tree | d3dc773831aae3689e2fc67d2c69914079d8d0d9 /kvmd/helpers | |
parent | af1e09067b13f397f05a68fde4e323969a1631c9 (diff) |
allow kvmd to edit msd params
Diffstat (limited to 'kvmd/helpers')
-rw-r--r-- | kvmd/helpers/otgmsd/remount/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kvmd/helpers/otgmsd/remount/__init__.py b/kvmd/helpers/otgmsd/remount/__init__.py index 667e770e..4a83980e 100644 --- a/kvmd/helpers/otgmsd/remount/__init__.py +++ b/kvmd/helpers/otgmsd/remount/__init__.py @@ -74,7 +74,7 @@ def _remount(path: str, rw: bool) -> None: def _mkdir(path: str) -> None: if not os.path.exists(path): - _log(f"MKDIR {path} ...") + _log(f"MKDIR --- {path}") try: os.mkdir(path) except Exception as err: @@ -82,7 +82,7 @@ def _mkdir(path: str) -> None: def _chown(path: str, user: str) -> None: - _log(f"CHOWN {user} {path} ...") + _log(f"CHOWN --- {user} - {path}") try: shutil.chown(path, user) except Exception as err: |