#!/bin/bash #wdlinux update scripts #http://www.wdlinux.cn conf="/www/wdlinux/etc/vsftpd.conf" grep "pasv_enable" $conf > /dev/null 2>&1 if [[ -f $conf && $? == 1 ]];then echo 'pasv_enable=YES pasv_min_port=10240 pasv_max_port=10260' >> /www/wdlinux/etc/vsftpd.conf iptables -I INPUT -p tcp --dport 10240:10260 -j ACCEPT /etc/rc.d/init.d/iptables save > /dev/null 2>&1 service vsftpd restart echo echo "OK" fi