check installed packages except bind9

This commit is contained in:
Serghey Rodin 2013-10-01 12:22:15 +03:00
commit 328fb045b3

View file

@ -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