diff --git a/server-ca/CSR.py b/server-ca/CSR.py index 02f2daefb..62d930293 100644 --- a/server-ca/CSR.py +++ b/server-ca/CSR.py @@ -239,7 +239,6 @@ nsComment = "Chocolatey" san_line += ",".join("DNS:%s" % n for n in subjects[1:]) + "\n" ext_tmp.write(san_line) ext_tmp.flush() - print ["./CA.sh", "-complete", dn, ext_tmp.name, csr_tmp.name, cert_tmp.name] ret = subprocess.Popen(["./CA.sh", "-complete", dn, ext_tmp.name, csr_tmp.name, cert_tmp.name],shell=False,stdin=subprocess.PIPE,stdout=subprocess.PIPE,stderr=subprocess.PIPE).wait() if ret == 0: cert = cert_tmp.read()