Files
CyberPanel/install-two/test.py
2018-05-29 20:20:05 +05:00

15 lines
201 B
Python

import subprocess
def installCertBot():
cmd = []
cmd.append("yum")
cmd.append("-y")
cmd.append("install")
cmd.append("certbot")
res = subprocess.call(cmd)
installCertBot()