Skip to content

Commit 9d53a3f

Browse files
authored
Fix missing dependency proftpd-mod-crypto on Ubuntu (hestiacp#4895)
* Fix missing dependency proftpd-mod-crypto on Ubuntu * Run prettier
1 parent 288cd1f commit 9d53a3f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

install/hst-install-ubuntu.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ software="acl apache2 apache2.2-common apache2-suexec-custom apache2-utils appar
5252
php$fpm_v php$fpm_v-apcu php$fpm_v-bz2 php$fpm_v-cgi php$fpm_v-cli php$fpm_v-common php$fpm_v-curl php$fpm_v-gd
5353
php$fpm_v-imagick php$fpm_v-imap php$fpm_v-intl php$fpm_v-ldap php$fpm_v-mbstring php$fpm_v-mysql php$fpm_v-opcache
5454
php$fpm_v-pgsql php$fpm_v-pspell php$fpm_v-readline php$fpm_v-xml php$fpm_v-zip postgresql postgresql-contrib
55-
proftpd-basic quota rrdtool rsyslog util-linux spamassassin
55+
proftpd-core proftpd-mod-crypto quota rrdtool rsyslog util-linux spamassassin
5656
sysstat unzip vim-common vsftpd whois zip zstd bubblewrap restic"
5757

5858
installer_dependencies="apt-transport-https ca-certificates curl dirmngr gnupg openssl software-properties-common wget sudo"
@@ -983,8 +983,9 @@ if [ "$vsftpd" = 'no' ]; then
983983
software=$(echo "$software" | sed -e "s/vsftpd//")
984984
fi
985985
if [ "$proftpd" = 'no' ]; then
986-
software=$(echo "$software" | sed -e "s/proftpd-basic//")
986+
software=$(echo "$software" | sed -e "s/proftpd-core//")
987987
software=$(echo "$software" | sed -e "s/proftpd-mod-vroot//")
988+
software=$(echo "$software" | sed -e "s/proftpd-mod-crypto//")
988989
fi
989990
if [ "$named" = 'no' ]; then
990991
software=$(echo "$software" | sed -e "s/bind9//")

0 commit comments

Comments
 (0)