BGP-Ranking/bin/shutdown.py

17 lines
402 B
Python
Raw Normal View History

2018-03-29 22:37:28 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from bgpranking.libs.helpers import is_running
import time
from redis import StrictRedis
if __name__ == '__main__':
r = StrictRedis(host='localhost', port=6582, db=1, decode_responses=True)
r.set('shutdown', 1)
while True:
running = is_running()
print(running)
if not running:
break
time.sleep(10)