From 0bdced08651e1d3f5b99aff89fb4587f107ca9d1 Mon Sep 17 00:00:00 2001 From: Jordan Rodgers Date: Mon, 7 May 2018 01:14:47 -0400 Subject: [PATCH] add new and clean up config, add pipfile ignore --- .gitignore | 1 + config.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4fd129e..d61e03e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ __pycache__/* rrd/* *.pyc *_key +Pipfile* diff --git a/config.py b/config.py index c807682..a8e650d 100644 --- a/config.py +++ b/config.py @@ -30,9 +30,9 @@ PROXMOX_HOSTS = [ for host in environ.get('PROXSTAR_PROXMOX_HOSTS', '').split(',') ] PROXMOX_USER = environ.get('PROXSTAR_PROXMOX_USER', '') -PROXMOX_PASS = environ.get('PROXSTAR_PROXMOX_PASS', '') PROXMOX_ISO_STORAGE = environ.get('PROXSTAR_PROXMOX_ISO_STORAGE', 'nfs-iso') PROXMOX_SSH_KEY = environ.get('PROXSTAR_PROXMOX_SSH_KEY', '') +PROXMOX_SSH_KEY_PASS = environ.get('PROXSTAR_PROXMOX_SSH_KEY_PASS', '') # STARRS STARRS_DB_HOST = environ.get('PROXSTAR_STARRS_DB_HOST', '')