BGP-Ranking/bin/stop.py

12 lines
254 B
Python
Raw Normal View History

2018-03-29 22:37:28 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from subprocess import Popen
2018-03-30 14:33:33 +02:00
from bgpranking.libs.helpers import get_homedir
2018-03-29 22:37:28 +02:00
if __name__ == '__main__':
2018-03-30 14:33:33 +02:00
get_homedir()
2018-03-29 22:37:28 +02:00
p = Popen(['shutdown.py'])
p.wait()
Popen(['run_backend.py', '--stop'])