mirror of https://github.com/CIRCL/lookyloo
35 lines
854 B
Python
Executable File
35 lines
854 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from subprocess import Popen, run
|
|
|
|
from lookyloo.default import get_config, get_homedir
|
|
|
|
|
|
def main():
|
|
# Just fail if the env isn't set.
|
|
get_homedir()
|
|
print('Start backend (redis)...')
|
|
p = run(['run_backend', '--start'])
|
|
p.check_returncode()
|
|
print('done.')
|
|
print('Start archiving process...')
|
|
Popen(['archiver'])
|
|
print('done.')
|
|
print('Start asynchronous ingestor...')
|
|
for _ in range(get_config('generic', 'async_capture_processes')):
|
|
Popen(['async_capture'])
|
|
print('done.')
|
|
print('Start background indexer...')
|
|
Popen(['background_indexer'])
|
|
print('done.')
|
|
print('Start background processing...')
|
|
Popen(['processing'])
|
|
print('done.')
|
|
print('Start website...')
|
|
Popen(['start_website'])
|
|
print('done.')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|