mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-03 11:55:57 +01:00
15 lines
201 B
Python
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() |