1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00

check vsftpd.conf in common locations

This commit is contained in:
Serghey Rodin 2013-06-24 11:17:56 +03:00
parent 8cfbf7159b
commit b072479b53

@ -43,9 +43,19 @@ else
update_ip_value '$NAT' "$nat_ip"
fi
# Change vsftpd config
# Check ftp system
if [ "$FTP_SYSTEM" = 'vsftpd' ]; then
conf="/etc/vsftpd/vsftpd.conf"
# Find configuration
if [ -e '/etc/vsftpd/vsftpd.conf' ]; then
conf='/etc/vsftpd/vsftpd.conf'
fi
if [ -e '/etc/vsftpd.conf' ]; then
conf='/etc/vsftpd.conf'
fi
# Update config
if [ -z "$(grep pasv_address $conf)" ]; then
if [ ! -z "$nat_ip" ]; then
echo "pasv_address=$nat_ip" >> $conf