jumpserver/run_server.py

12 lines
212 B
Python
Raw Normal View History

2018-03-16 02:43:21 +00:00
#!/usr/bin/env python3
2017-12-30 14:53:59 +00:00
# coding: utf-8
2017-12-26 16:14:46 +00:00
import sys
2018-03-19 03:26:51 +00:00
import subprocess
2017-12-29 15:53:45 +00:00
if __name__ == '__main__':
2018-03-19 03:26:51 +00:00
subprocess.call('python3 jms start all', shell=True,
stdin=sys.stdin, stdout=sys.stdout)
2016-09-01 15:09:58 +00:00