Skip to content

Commit c244f83

Browse files
committed
Fix if statement in installer
1 parent 0f1749d commit c244f83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/hst-install-debian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1597,8 +1597,8 @@ if [ "$exim" = 'yes' ]; then
15971597
echo "[ * ] Configuring Exim mail server..."
15981598
gpasswd -a Debian-exim mail > /dev/null 2>&1
15991599
exim_version=$(exim4 --version | head -1 | awk '{print $3}' | cut -f -2 -d .);
1600-
if [ "exim_version" = "4.94" ]; then
1601-
cp -f $HESTIA_INSTALL_DIR/exim/exim4.conf.4.94.template /etc/exim4/exim/exim4.conf.template
1600+
if [ "$exim_version" = "4.94" ]; then
1601+
cp -f $HESTIA_INSTALL_DIR/exim/exim4.conf.4.94.template /etc/exim/exim4.conf.template
16021602
else
16031603
cp -f $HESTIA_INSTALL_DIR/exim/exim4.conf.template /etc/exim4/
16041604
fi

0 commit comments

Comments
 (0)