Skip to content

Commit 499e6c7

Browse files
committed
Check for existing postfix or ufw packages.
1 parent b1c4313 commit 499e6c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ check_result $? "No access to Hestia repository"
316316
# Check installed packages
317317
tmpfile=$(mktemp -p /tmp)
318318
dpkg --get-selections > $tmpfile
319-
for pkg in exim4 mariadb-server apache2 nginx hestia; do
319+
for pkg in exim4 mariadb-server apache2 nginx hestia postfix; do
320320
if [ ! -z "$(grep $pkg $tmpfile)" ]; then
321321
conflicts="$pkg $conflicts"
322322
fi

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ check_result $? "No access to Hestia repository"
294294
# Check installed packages
295295
tmpfile=$(mktemp -p /tmp)
296296
dpkg --get-selections > $tmpfile
297-
for pkg in exim4 mariadb-server apache2 nginx hestia; do
297+
for pkg in exim4 mariadb-server apache2 nginx hestia postfix ufw; do
298298
if [ ! -z "$(grep $pkg $tmpfile)" ]; then
299299
conflicts="$pkg $conflicts"
300300
fi

0 commit comments

Comments
 (0)