mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-01-27 11:16:35 +00:00
Fix ownership issue
This commit is contained in:
parent
9a339729b7
commit
6bbceca917
|
@ -27,4 +27,4 @@ async def get_token_header(
|
||||||
|
|
||||||
def get_api_version() -> str:
|
def get_api_version() -> str:
|
||||||
"""Get API version"""
|
"""Get API version"""
|
||||||
return "2.0.5"
|
return "2.0.6"
|
||||||
|
|
|
@ -173,7 +173,7 @@ def move_service(
|
||||||
[
|
[
|
||||||
"chown",
|
"chown",
|
||||||
"-R",
|
"-R",
|
||||||
f"{folder.owner}:f{folder.group}",
|
f"{folder.owner}:{folder.group}",
|
||||||
f"/volumes/{volume.name}/{folder.name}",
|
f"/volumes/{volume.name}/{folder.name}",
|
||||||
],
|
],
|
||||||
check=True,
|
check=True,
|
||||||
|
|
Loading…
Reference in a new issue