diff options
-rw-r--r-- | etc/inc/config.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc index 5cb7ca4..8dd9243 100644 --- a/etc/inc/config.inc +++ b/etc/inc/config.inc @@ -2834,7 +2834,7 @@ function system_start_ftp_helpers() { if($g['debug']) log_error("Config: FTP proxy disabled for interface {$ifent}"); - exec("/bin/ps awux | grep \"ftp-proxy\" | grep \"{$port}\" | grep -v grep | awk '{ print $2 }'", $helpers); + exec("/bin/ps awux | /usr/bin/grep ftp-proxy | /usr/bin/grep {$port} | /usr/bin/grep -v grep | /usr/bin/awk '{ print $2 }'", $helpers); if(count($helpers[0]) > 0) mwexec("/bin/kill {$helpers[0]}"); $interface_counter++; @@ -2875,7 +2875,7 @@ function system_start_ftp_helpers() { /* if ftp-proxy is already running then do not launch it again */ if($g['debug']) log_error("Config: FTP proxy port ($port) enabled for interface {$ifname}"); - $helpers = exec("/bin/ps awux | grep \"/usr/local/sbin/ftp-proxy {$shaper_queue} -p {$port}\" | grep -v grep | sed \"s/ */ /g\""); + $helpers = exec("/bin/ps awux | /usr/bin/grep ftp-proxy | /usr/bin/grep {$port} | /usr/bin/grep -v grep | sed \"s/ */ /g\""); if(!$helpers && $ip) mwexec("/usr/local/sbin/ftp-proxy {$shaper_queue} -p {$port} {$pftpxsourceaddr} {$ip} -T PFFTPPROXY"); if(!$ip) |