2003-10-25 18:50:24 -04:00
|
|
|
In order to start Pure-FTPd at boot-time, add something like this to
|
|
|
|
/etc/rc.local:
|
|
|
|
|
|
|
|
if [ -x ${PREFIX}/sbin/pure-ftpd ]; then
|
2004-02-29 19:36:27 -05:00
|
|
|
echo Starting Pure-FTPd
|
2004-03-01 06:26:53 -05:00
|
|
|
${PREFIX}/sbin/pure-ftpd -4 -A -B -H -u1000
|
2003-10-25 18:50:24 -04:00
|
|
|
fi
|
|
|
|
|
2004-03-01 06:26:53 -05:00
|
|
|
By default, Pure-FTPd will only listen to IPv6 addresses unless you
|
|
|
|
explicitely add the -4 switch to the command-line.
|
|
|
|
|