Removed useless set_php() output

This commit is contained in:
sTiKyt 2020-05-08 11:44:32 +03:00
parent 285163f5f9
commit 039811370d
No known key found for this signature in database
GPG Key ID: 510E1C3C9B2414B4

View File

@ -9,9 +9,8 @@ exit_server_www = chdir("../..")
def set_php(host = '127.0.0.1', port = 80):
#run_background_command(["php", "-S", "{0}:{1}".format(host, port), "-t", "Server/www"], stdout=DEVNULL, stderr=DEVNULL)
run_command(['killall','-2','php'], stdout=DEVNULL, stderr=DEVNULL)
run_background_command(["php", "-S", "{0}:{1}".format(host, port), "-t", "Server/www"])
run_background_command(["php", "-S", "{0}:{1}".format(host, port), "-t", "Server/www"], stdout=DEVNULL, stderr=DEVNULL)
def set_port(port = 80):
run_background_command(["fuser", "-k", "{0}/tcp".format(port)], stdout=DEVNULL, stderr=DEVNULL)