From ce5aebdaa6e76ab3645aab2cf21a0edf85e2da96 Mon Sep 17 00:00:00 2001 From: jgaunt Date: Tue, 12 Nov 2019 15:11:25 -0500 Subject: [PATCH] Update 'config.py' --- config.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index b14cd26..cf4cf08 100644 --- a/config.py +++ b/config.py @@ -6,10 +6,13 @@ HOSTNAME = 'freenas.local' # Root password for the system, api is only able to use basic auth with the root account ROOT_PASSWORD = 'my super secret password' # path to the CA certificate to verify the ssl cert. If you don't wish to verify, make this False -CA_CERT_PATH = "/root/ca.crt" +CA_CERT_PATH = '/root/ca.crt' # pool names and their encryption keys, the index is the pool name and the value is the encryption passphrase for the pool # Ex: ENCRYPTION_PASSPHRASES = {'zroot': 'super secret password goes here'} this would be the zroot pool and password to unlock it -ENCRYPTION_PASSPHRASES = {'POOL_NAME': 'ENCRYPTION_PASSPHRASE', 'POOL_NAME2': 'ENCRYPTION_PASSPHRASE2'} +ENCRYPTION_PASSPHRASES = { + 'POOL_NAME': 'ENCRYPTION_PASSPHRASE', + 'POOL_NAME2': 'ENCRYPTION_PASSPHRASE2' +} # STMP Settings SMTP_SERVER = 'smtp.gmail.com'