Skip to content

Commit 2fc8b55

Browse files
Stuart J Mackintoshjaapmarcus
andauthored
Update hst-install-debian.sh - remove identd fixup (hestiacp#3770)
* Update hst-install-debian.sh - remove identd fixup Removed the fixup on proftpd identd lookups - see related PR hestiacp#3769 This sets the default behaviour to not turn ident lookups off. As a consequence, if installed on an old Deb, ident may be enabled as it is not explicitly disabled any more. if [ "$release" -eq 11 ]; then sed -i 's|IdentLookups off|#IdentLookups off|g' /etc/proftpd/proftpd.conf fi * Update Ubuntu installer * Fix format --------- Co-authored-by: Jaap Marcus <9754650+jaapmarcus@users.noreply.github.com>
1 parent 5753238 commit 2fc8b55

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

install/hst-install-debian.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1543,10 +1543,6 @@ if [ "$proftpd" = 'yes' ]; then
15431543
cp -f $HESTIA_INSTALL_DIR/proftpd/proftpd.conf /etc/proftpd/
15441544
cp -f $HESTIA_INSTALL_DIR/proftpd/tls.conf /etc/proftpd/
15451545

1546-
if [ "$release" -eq 11 ]; then
1547-
sed -i 's|IdentLookups off|#IdentLookups off|g' /etc/proftpd/proftpd.conf
1548-
fi
1549-
15501546
update-rc.d proftpd defaults > /dev/null 2>&1
15511547
systemctl start proftpd >> $LOG
15521548
check_result $? "proftpd start failed"

install/hst-install-ubuntu.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1559,10 +1559,6 @@ if [ "$proftpd" = 'yes' ]; then
15591559
cp -f $HESTIA_INSTALL_DIR/proftpd/proftpd.conf /etc/proftpd/
15601560
cp -f $HESTIA_INSTALL_DIR/proftpd/tls.conf /etc/proftpd/
15611561

1562-
if [ "$release" = '22.04' ]; then
1563-
sed -i 's|IdentLookups off|#IdentLookups off|g' /etc/proftpd/proftpd.conf
1564-
fi
1565-
15661562
update-rc.d proftpd defaults > /dev/null 2>&1
15671563
systemctl start proftpd >> $LOG
15681564
check_result $? "proftpd start failed"

0 commit comments

Comments
 (0)