Files
CyberPanel/install-two/test.py

15 lines
201 B
Python
Raw Normal View History

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