Only require a passphrase if STORAGE_TYPE is not "unencrypted"

This commit is contained in:
Daniel Quinn 2018-02-04 13:15:08 +00:00
parent d8740ee5ca
commit e5b7e93eff

View File

@ -11,8 +11,10 @@ if __name__ == "__main__":
# The runserver and consumer need to have access to the passphrase, so it
# must be entered at start time to keep it safe.
if "runserver" in sys.argv or "document_consumer" in sys.argv:
if(settings.ENABLE_ENCRYPTION and not settings.PASSPHRASE):
settings.PASSPHRASE = input(
"settings.PASSPHRASE is unset. Input passphrase: ")
if not settings.STORAGE_TYPE == "unencrypted":
if not settings.PASSPHRASE:
settings.PASSPHRASE = input(
"settings.PASSPHRASE is unset. Input passphrase: "
)
execute_from_command_line(sys.argv)