From 9b634f51e5b0617d0205bde2b91bc0806cceff85 Mon Sep 17 00:00:00 2001 From: rperper Date: Thu, 1 Nov 2018 20:40:32 -0400 Subject: [PATCH] Fixed the bug Rukai found that I introduced (thanks) --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index 31ad4e17f..17e3e8902 100644 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -972,7 +972,7 @@ class InstallCyberPanel: else: command = 'yum -y install pdns pdns-backend-mysql' cmd = shlex.split(command) - res = subprocess.call(cmd, shell=True) + res = subprocess.call(cmd) if res == 1: count = count + 1