Start working checking secrets content

This commit is contained in:
flyingscorpio@pinebookpro 2020-09-09 15:55:44 +02:00
parent 69cd9b13ec
commit 020a3b10c6
2 changed files with 6 additions and 2 deletions

View file

@ -44,7 +44,11 @@ class Installer:
try:
with open("secrets", "r") as secrets_file:
secrets = secrets_file.read()
secrets = [
line.strip()
for line in secrets_file.read()
if not line.startswith("#") and line.strip()
]
except FileNotFoundError:
print("No 'secrets' file found. Did you forget to create it?")
sys.exit(1)

View file

@ -1,3 +1,3 @@
# secrets - is sourced by some commands - this is a template
SETUP_COCKPIT_EMAIL='john@doe.com'
SETUP_COCKPIT_EMAIL=''