1
0
mirror of https://github.com/jumpserver/jumpserver.git synced 2025-05-01 04:43:54 +00:00
jumpserver/run_server.py
2018-03-19 11:26:51 +08:00

12 lines
212 B
Python

#!/usr/bin/env python3
# coding: utf-8
import sys
import subprocess
if __name__ == '__main__':
subprocess.call('python3 jms start all', shell=True,
stdin=sys.stdin, stdout=sys.stdout)