From 796339e6fd9dedf9e0b609d67d7c192c005c6ff9 Mon Sep 17 00:00:00 2001 From: rperper Date: Tue, 30 Oct 2018 14:34:51 -0400 Subject: [PATCH] Needed to turn on the shell for PowerDNS install. --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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