Files
packages/net/netatalk/Config.in
Antonio Pastor 2a8fdf37dc netatalk: update to 4.3.2
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>
2025-09-26 06:39:36 +03:00

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