Files
CyberPanel/install/test.py
2019-06-08 21:41:43 +00:00

15 lines
201 B
Python
Executable File

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