From 328fb045b3920637313af69a71f1aa3efa4836d7 Mon Sep 17 00:00:00 2001 From: Serghey Rodin Date: Tue, 1 Oct 2013 12:22:15 +0300 Subject: [PATCH] check installed packages except bind9 --- install/vst-install-ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/vst-install-ubuntu.sh b/install/vst-install-ubuntu.sh index 93a6c40e2..f1f2b4b11 100644 --- a/install/vst-install-ubuntu.sh +++ b/install/vst-install-ubuntu.sh @@ -111,7 +111,7 @@ fi # Check installed packages tmpfile=$(mktemp -p /tmp) dpkg --get-selections > $tmpfile -for pkg in exim4 bind9 mysql-server apache2 nginx vesta; do +for pkg in exim4 mysql-server apache2 nginx vesta; do if [ ! -z "$(grep $pkg $tmpfile)" ]; then conflicts="$pkg $conflicts" fi