Skip to content

Commit c169f01

Browse files
committed
Fix apt issue after php-fpm package change.
1 parent 3df8d4f commit c169f01

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
@@ -729,7 +729,7 @@ chmod a+x /usr/sbin/policy-rc.d
729729

730730
# Installing apt packages
731731
echo -ne "Install HestiaCP and all required packages, the process will take around 10-15 minutes... "
732-
apt-get -y install $software > /dev/null 2>&1 &
732+
apt-get -y --allow-change-held-packages install $software > /dev/null 2>&1 &
733733
BACK_PID=$!
734734

735735
# Check if package installation is done, print a spinner

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ chmod a+x /usr/sbin/policy-rc.d
704704

705705
# Installing apt packages
706706
echo -ne "Install HestiaCP and all required packages, the process will take around 10-15 minutes... "
707-
apt-get -y install $software > /dev/null 2>&1 &
707+
apt-get -y --allow-change-held-packages install $software > /dev/null 2>&1 &
708708
BACK_PID=$!
709709

710710
# Check if package installation is done, print a spinner

0 commit comments

Comments
 (0)