From 922156101e88bbbd16933e11288fd1136b7c7bf3 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Wed, 18 Jan 2006 00:48:07 +0000 Subject: [PATCH] Remove ftpsesame, its been reported to actually break pftpx in certain cases --- etc/inc/config.inc | 3 --- 1 file changed, 3 deletions(-) diff --git a/etc/inc/config.inc b/etc/inc/config.inc index 91c0c992be..f7b750be49 100644 --- a/etc/inc/config.inc +++ b/etc/inc/config.inc @@ -1308,9 +1308,6 @@ function system_start_ftp_helpers() { $helpers = exec("/bin/ps awux | grep \"/usr/local/sbin/pftpx -c {$port}\" | grep -v grep | sed \"s/ */ /g\""); if(!$helpers && $ip) mwexec("/usr/local/sbin/pftpx -c {$port} -g 8021 {$ip}"); - $helpers = exec("/bin/ps awux | grep \"/usr/local/sbin/ftpsesame -i {$int}\" | grep -v grep | sed \"s/ */ /g\""); - if(!$helpers && $ip) - mwexec("/usr/local/sbin/ftpsesame -i {$int} -t ftpsesame"); $interface_counter++; } }