Files
CyberPanel/install/test.py

15 lines
214 B
Python
Raw Normal View History

import subprocess
def installCertBot():
cmd = []
cmd.append("yum")
cmd.append("-y")
cmd.append("install")
cmd.append("certbot")
2019-03-21 23:26:42 +05:00
res = ProcessUtilities.executioner(cmd)
installCertBot()