From 91dd2bdbde822cb1cd2129442d3a4661ab6ad41d Mon Sep 17 00:00:00 2001 From: qtwrk Date: Tue, 3 Apr 2018 23:35:07 +0200 Subject: [PATCH 1/3] jsdelivr.net jsdelivr.net --- filemanager/templates/filemanager/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filemanager/templates/filemanager/index.html b/filemanager/templates/filemanager/index.html index f6dad04ea..05fc2bcea 100644 --- a/filemanager/templates/filemanager/index.html +++ b/filemanager/templates/filemanager/index.html @@ -18,7 +18,7 @@ - + @@ -645,4 +645,4 @@ - \ No newline at end of file + From 17ce0fc64255af97e1640da22da9caa3e84b81ce Mon Sep 17 00:00:00 2001 From: qtwrk Date: Tue, 10 Apr 2018 00:44:10 +0200 Subject: [PATCH 2/3] fix issue on installing some dedicated server fix issue on installing some dedicated server with pre-installed named.service occupies port 53 which makes powerdns failed to start --- install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install.sh b/install.sh index 94828320d..b923418cb 100644 --- a/install.sh +++ b/install.sh @@ -4,6 +4,14 @@ rm -f /etc/yum.repos.d/epel.repo rm -f /etc/yum.repos.d/epel.repo.rpmsave yum install epel-release -y #some provider's centos7 template come with incorrect or misconfigured epel.repo +if systemctl is-active named | grep -q 'active'; then + systemctl stop named + systemctl disable named + echo "Disabling named to aviod powerdns conflicts..." + else + echo "named is not installed or active, to next step..." +fi +# above if will check if server has named.service running that occupies port 53 which makes powerdns failed to start yum clean all yum update -y yum install wget which curl -y From 7ae942936851e9f95fa8a9b0ec5341a14cc83772 Mon Sep 17 00:00:00 2001 From: qtwrk Date: Tue, 10 Apr 2018 00:45:57 +0200 Subject: [PATCH 3/3] fix issue on installing some dedicated server fix issue on installing some dedicated server with pre-installed named.service occupies port 53 which makes powerdns failed to start --- install-cn.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install-cn.sh b/install-cn.sh index e60a799f5..80f7c99c2 100644 --- a/install-cn.sh +++ b/install-cn.sh @@ -4,6 +4,14 @@ rm -f /etc/yum.repos.d/epel.repo rm -f /etc/yum.repos.d/epel.repo.rpmsave yum install epel-release -y #some provider's centos7 template come with incorrect or misconfigured epel.repo +if systemctl is-active named | grep -q 'active'; then + systemctl stop named + systemctl disable named + echo "Disabling named to aviod powerdns conflicts..." + else + echo "named is not installed or active, to next step..." +fi +# above if will check if server has named.service running that occupies port 53 which makes powerdns failed to start yum clean all yum update -y yum install wget which curl -y