launchd: new module to control services on macOS hosts (#305)

This commit is contained in:
Martin Migasiewicz 2020-07-22 15:54:58 +02:00 committed by GitHub
commit 80cd8329e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 947 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#!/usr/bin/env python
from __future__ import absolute_import, division, print_function
__metaclass__ = type
import sys
if __name__ == '__main__':
if sys.version_info[0] >= 3:
import http.server
import socketserver
PORT = int(sys.argv[1])
Handler = http.server.SimpleHTTPRequestHandler
httpd = socketserver.TCPServer(("", PORT), Handler)
httpd.serve_forever()
else:
import mimetypes
mimetypes.init()
mimetypes.add_type('application/json', '.json')
import SimpleHTTPServer
SimpleHTTPServer.test()