diff options
author | Andy Walsh <andy.walsh44+github@gmail.com> | 2018-01-31 14:17:11 +0100 |
---|---|---|
committer | Andy Walsh <andy.walsh44+github@gmail.com> | 2018-07-26 21:38:19 +0200 |
commit | 0d23c9f2eafe9f907c53377aa91c3e6abcc8692e (patch) | |
tree | b031996c65b62e92aadef08880b202c6d756775e /net/samba4/Config.in | |
parent | 452958469067c4accc98c3e9e90ec423dfc581c7 (diff) |
samba4: add package samba-4.8
Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
Diffstat (limited to 'net/samba4/Config.in')
-rw-r--r-- | net/samba4/Config.in | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/net/samba4/Config.in b/net/samba4/Config.in new file mode 100644 index 000000000..404f62a4b --- /dev/null +++ b/net/samba4/Config.in @@ -0,0 +1,90 @@ +config SAMBA4_SERVER_ACL + bool "ACL support (xattr)" + depends on PACKAGE_samba4-server + select PACKAGE_acl + help + installs: sharesec + modules: vfs_acl_xattr vfs_acl_tdb vfs_posixacl + + Extended access control list support + default n + +config SAMBA4_SERVER_AD_DC + bool "Active Directory Domain Controller support (requires krb5-server) (EXPERIMENTAL)" + depends on PACKAGE_samba4-server + select PACKAGE_python-base + select PACKAGE_python-crypto + select PACKAGE_libopenssl + select PACKAGE_libgnutls + select PACKAGE_libopenldap + help + installs: samba (meta-daemon) python-crypt ntlm_auth + scripts: samba-tool + + Run as a Active Directory Domain Controller + see: https://wiki.samba.org/index.php/Setting_up_Samba_as_an_Active_Directory_Domain_Controller + HINT: see section (# Using the Domain Controller as a File Server) + NOTE: Extroot is recommend for this setup, as it is not optimized to run completely from RAM/tempfs! + default n + +config SAMBA4_SERVER_AVAHI + bool "Avahi support" + depends on PACKAGE_samba4-server + select PACKAGE_libavahi-client + help + Announce Samba resources via DNS/DNS-SD using the Avahi daemon + default n + +config SAMBA4_SERVER_VFS + bool "Common VFS modules" + depends on PACKAGE_samba4-server + help + installs: + modules: (vfs_btrfs) vfs_fruit vfs_shadow_copy2 vfs_recycle vfs_fake_perms vfs_readonly vfs_cap vfs_offline vfs_crossrename + + Commonly used VFS modules, vfs_btrfs requires kmod-fs-btrfs to be selected separately + default y + +config SAMBA4_SERVER_QUOTAS + bool "Disk quota support" + depends on PACKAGE_samba4-server + help + installs: + modules: vfs_default_quota + + Support for disk quotas using the quotas VFS module (vfs_default_quota) + default n + +config SAMBA4_SERVER_VFSX + bool "Extended VFS modules" + depends on PACKAGE_samba4-server + help + installs: + modules: vfs_virusfilter vfs_shell_snap vfs_commit vfs_worm vfs_xattr_tdb vfs_streams_xattr vfs_aio_fork vfs_aio_pthread (vfs_linux_xfs_sgid) vfs_netatalk vfs_dirsort vfs_fileid vfs_catia + + Additional VFS modules that aren't commonly used, vfs_linux_xfs_sgid requires kmod-fs-xfs to be selected separately + default n + +config SAMBA4_SERVER_NETBIOS + bool "NetBIOS support" + depends on PACKAGE_samba4-server + help + installs: nmbd (daemon) + + Announce Samba resources via NetBIOS using the nmbd daemon + WSD (Web Services for Devices) replaces the functionality of NetBIOS and is provided by the wsdd2 package (selected by default). + Note: As of Windows 10 Fall Creators Update (1709) NetBIOS isn't supported unless the old SMB1 feature is reinstalled (not recommended). + Network shares can be directly accessed via network paths '\\hostname\sharename' and mounted via 'map network drive' without NetBIOS or WSD. + default n + +config SAMBA4_SERVER_WINBIND + bool "Winbind support" + depends on PACKAGE_samba4-server + depends on SAMBA4_SERVER_AD_DC + help + installs: winbindd (daemon) wbinfo + + Support using domain users and groups in local commands, such as chown and chgrp. + Display domain users and groups in local command's output, such as ls. + see: https://wiki.samba.org/index.php/Configuring_Winbindd_on_a_Samba_AD_DC + default n |