Start working checking secrets content
This commit is contained in:
parent
69cd9b13ec
commit
020a3b10c6
2 changed files with 6 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# secrets - is sourced by some commands - this is a template
|
||||
|
||||
SETUP_COCKPIT_EMAIL='john@doe.com'
|
||||
SETUP_COCKPIT_EMAIL=''
|
||||
|
|
Loading…
Add table
Reference in a new issue