Skip to content

Commit

Permalink
Ensure reverse_hostname and replace_hostname is set
Browse files Browse the repository at this point in the history
  • Loading branch information
gummiboll committed Mar 3, 2015
1 parent 524b732 commit e5986e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions graphios.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,9 @@ def verify_config(config_dict):
verifies the required config variables are found
"""
global spool_directory
ensure_list = ['replacement_character', 'log_file', 'log_max_size',
'log_level', 'sleep_time', 'sleep_max', 'test_mode']
ensure_list = ['replacement_character', 'reverse_hostname', 'replace_hostname',
'log_file', 'log_max_size', 'log_level', 'sleep_time', 'sleep_max',
'test_mode']
missing_values = []
for ensure in ensure_list:
if ensure not in config_dict:
Expand Down

0 comments on commit e5986e3

Please sign in to comment.