Add check for PAPERLESS_MEDIADIR

This commit is contained in:
Dashie 2017-02-01 00:28:37 +01:00
parent 425f87618a
commit 7699a881d0
No known key found for this signature in database
GPG Key ID: C2D57B325840B755

View File

@ -49,6 +49,20 @@ def paths_check(app_configs, **kwargs):
writeable_hint.format(directory)
))
directory = os.getenv("PAPERLESS_STATICDIR")
if directory:
if not os.path.exists(directory):
check_messages.append(Error(
exists_message.format("PAPERLESS_STATICDIR"),
exists_hint.format(directory)
))
if not check_messages:
if not os.access(directory, os.W_OK | os.X_OK):
check_messages.append(Error(
writeable_message.format("PAPERLESS_STATICDIR"),
writeable_hint.format(directory)
))
return check_messages