forked from p34709852/monkey
Use octal representation for permissions
This commit is contained in:
parent
4ad49d19c7
commit
5ba8effe1a
|
@ -11,7 +11,7 @@ def ensure_file_existence(file: str) -> None:
|
||||||
def ensure_file_permissions(file: str) -> None:
|
def ensure_file_permissions(file: str) -> None:
|
||||||
if not file_has_expected_permissions(path=file, expected_permissions="0o400"):
|
if not file_has_expected_permissions(path=file, expected_permissions="0o400"):
|
||||||
raise InsecurePermissionsError(
|
raise InsecurePermissionsError(
|
||||||
f"{file} has insecure permissions. Required permissions: r--------. Exiting."
|
f"{file} has insecure permissions. Required permissions: 400. Exiting."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue