mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-27 03:02:20 +00:00
11 lines
192 B
Python
11 lines
192 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)
|
|
|