diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-11-18 21:24:50 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-11-18 21:24:50 +0000 |
commit | b03c0a0177cfad22b8efeaa71c55dfb144f869e8 (patch) | |
tree | d9ca93d23b1b2016eb6e8757eeb608e20b6e8007 /etc/rc.bootup | |
parent | e96ab93b95a767e59bc7be6da786e2402242699b (diff) | |
download | pfsense-b03c0a0177cfad22b8efeaa71c55dfb144f869e8.zip pfsense-b03c0a0177cfad22b8efeaa71c55dfb144f869e8.tar.gz |
Start PFTPX helpers earlier in startup sequence
Diffstat (limited to 'etc/rc.bootup')
-rwxr-xr-x | etc/rc.bootup | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup index 31d7a4c..e6c9cab 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -165,6 +165,11 @@ /* bring up carp interfaces */ interfaces_carp_configure(); + /* start ftp proxy helpers if they are enabled */ + echo "Starting FTP helpers... "; + system_start_ftp_helpers(); + echo "done.\n"; + /* generate resolv.conf */ system_resolvconf_generate(); @@ -251,11 +256,6 @@ interfaces_carp_bring_up_final(); - /* start ftp proxy helpers if they are enabled */ - echo "Starting FTP helpers... "; - system_start_ftp_helpers(); - echo "done.\n"; - /* power down hard drive if needed/set */ system_set_harddisk_standby(); |