chg: Re-enable start script

lacus
Raphaël Vinot 2022-09-23 13:11:17 +02:00
parent 9a7f93f738
commit f4e16b4e2c
1 changed files with 5 additions and 6 deletions

View File

@ -13,20 +13,19 @@ def main():
p.check_returncode()
print('done.')
print('Start archiving process...')
#Popen(['archiver'])
Popen(['archiver'])
print('done.')
print('Start asynchronous ingestor...')
#for _ in range(get_config('generic', 'async_capture_processes')):
# Popen(['async_capture'])
Popen(['async_capture'])
print('done.')
print('Start background indexer...')
#Popen(['background_indexer'])
Popen(['background_indexer'])
print('done.')
print('Start background processing...')
# Popen(['processing'])
Popen(['processing'])
print('done.')
print('Start website...')
#Popen(['start_website'])
Popen(['start_website'])
print('done.')