diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index eeba79d5a..ace2f73fe 100644 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -940,7 +940,7 @@ class InstallCyberPanel: else: command = 'yum -y install pdns pdns-backend-mysql' cmd = shlex.split(command) - res = subprocess.call(cmd) + res = subprocess.call(cmd, shell=True) if res == 1: count = count + 1