mirror of
https://github.com/openwrt/packages.git
synced 2025-12-24 10:38:21 +04:00
Netatalk 4.3.x adds the option to use sqlite as a CNID DB. This is now a config option for the full package. (mysql is also an option but this has not been included here yet). As CNID DB backends are now managed by the netatalk meta-daemon the init script has been updated to use it instead of starting afpd & dbd manually. Cleaned up tab/space issues here and there. Signed-off-by: Antonio Pastor <antonio.pastor@gmail.com>
50 lines
887 B
Plaintext
50 lines
887 B
Plaintext
if PACKAGE_netatalk-full
|
|
|
|
config PACKAGE_NETATALK_APPLETALK
|
|
bool "Enable AppleTalk support."
|
|
default y
|
|
|
|
config PACKAGE_NETATALK_ZEROCONF
|
|
bool "Enable Zeroconf support."
|
|
default y
|
|
|
|
config PACKAGE_NETATALK_ACLS
|
|
bool "Enable ACL support."
|
|
default y
|
|
|
|
config PACKAGE_NETATALK_PAM
|
|
bool "Enable PAM support."
|
|
default y
|
|
|
|
config PACKAGE_NETATALK_LDAP
|
|
bool "Enable LDAP support."
|
|
default y
|
|
|
|
config PACKAGE_NETATALK_ICONV
|
|
bool "Use libiconv features."
|
|
default y
|
|
|
|
config PACKAGE_NETATALK_KERBEROS
|
|
bool "Enable kerberos support."
|
|
default y
|
|
|
|
config PACKAGE_NETATALK_LIBWRAP
|
|
bool "Enable TCP wrappers."
|
|
default y
|
|
|
|
choice
|
|
prompt "CNID backends"
|
|
default PACKAGE_NETATALK_BOTHBACK
|
|
|
|
config PACKAGE_NETATALK_DBDBACK
|
|
bool "dbd"
|
|
|
|
config PACKAGE_NETATALK_SQLITEBACK
|
|
bool "sqlite"
|
|
|
|
config PACKAGE_NETATALK_BOTHBACK
|
|
bool "dbd,sqlite"
|
|
endchoice
|
|
|
|
endif
|