mirror of https://github.com/kf7eel/hbnet.git
updaye playback.py
This commit is contained in:
parent
5aa071022d
commit
9c9d2f9e71
|
|
@ -214,6 +214,14 @@ if __name__ == '__main__':
|
|||
# INITIALIZE THE REPORTING LOOP
|
||||
report_server = config_reports(CONFIG, reportFactory)
|
||||
|
||||
# Create folder so hbnet.py can access list PEER connections
|
||||
print(CONFIG['LOGGER']['LOG_NAME'])
|
||||
if Path('/tmp/' + (CONFIG['LOGGER']['LOG_NAME'] + '_PEERS/')).exists():
|
||||
pass
|
||||
else:
|
||||
Path('/tmp/' + (CONFIG['LOGGER']['LOG_NAME'] + '_PEERS/')).mkdir()
|
||||
|
||||
|
||||
# HBlink instance creation
|
||||
logger.info('HBlink \'playback.py\' (c) 2017-2019 Cort Buffington, N0MJS & Mike Zingman, N4IRR -- SYSTEM STARTING...')
|
||||
for system in CONFIG['SYSTEMS']:
|
||||
|
|
|
|||
Loading…
Reference in New Issue