kumquat-buildroot/package/proftpd/Config.in
Jared Bents 863e0fc3bf package/proftpd: add mod_{sql, quotatab} support
- Enables mod_sql which is required for quotatab_sql
- Adds options for enabling mod_quotatab and the sub-component
  file/LDAP/RADIUS/SQL modules
- Copies over ftpquota script if perl and mod_quotatab are
  enabled (This script isn't required but is an additional tool
  for mod_quotatab)

Signed-off-by: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com>
Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-10-11 17:21:36 +02:00

69 lines
1.7 KiB
Plaintext

config BR2_PACKAGE_PROFTPD
bool "proftpd"
depends on BR2_USE_MMU # fork()
help
ProFTPD, a highly configurable FTP server.
http://www.proftpd.org/
if BR2_PACKAGE_PROFTPD
config BR2_PACKAGE_PROFTPD_MOD_REWRITE
bool "mod_rewrite support"
help
Compile ProFTPD with mod_rewrite support
config BR2_PACKAGE_PROFTPD_MOD_REDIS
bool "mod_redis support"
select BR2_PACKAGE_HIREDIS
help
The mod_redis module enables ProFTPD support for caching
data in Redis servers, using the hiredis client library.
config BR2_PACKAGE_PROFTPD_MOD_SFTP
bool "mod_sftp support"
select BR2_PACKAGE_OPENSSL
help
Compile ProFTPD with mod_sftp support
config BR2_PACKAGE_PROFTPD_MOD_SQL
bool "mod_sql support"
help
Compile ProFTPD with mode_sql support.
config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB
bool "mod_quotatab support"
help
Compile ProFTPD with mode_quotatab support. This module
is required in order to support quota tables:
1. mod_quotatab_file
2. mod_quotatab_ldap
3. mod_quotatab_radius
4. mod_quotatab_sql
if BR2_PACKAGE_PROFTPD_MOD_QUOTATAB
config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB_FILE
bool "mod_quotatab_file table support"
help
Compile mod_quotatab with mod_quotatab_file table.
config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB_LDAP
bool "mod_quotatab_ldap table support"
help
Compile mod_quotatab with mod_quotatab_ldap table.
config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB_RADIUS
bool "mod_quotatab_radius table support"
help
Compile mod_quotatab with mod_quotatab_radius table.
config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB_SQL
bool "mod_quotatab_sql table support"
select BR2_PACKAGE_PROFTPD_MOD_SQL
help
Compile mod_quotatab with mod_quotatab_sql table.
endif
endif