mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 23:50:03 -06:00
814592cf22
Introduces new utility to configure Samba on an IPA domain member. The tool sets up Samba configuration and internal databases, creates cifs/... Kerberos service and makes sure that a keytab for this service contains the key with the same randomly generated password that is set in the internal Samba databases. Samba configuration is created by querying an IPA master about details of trust to Active Directory configuration. All known identity ranges added to the configuration to allow Samba to properly handle them (read-only) via idmap_sss. Resulting configuration allows connection with both NTLMSSP and Kerberos authentication for IPA users. Access controls for the shared content should be set by utilizing POSIX ACLs on the file system under a specific share. The utility is packaged as freeipa-client-samba package to allow pulling in all required dependencies for Samba and cifs.ko (smb3.ko) kernel module. This allows an IPA client to become both an SMB server and an SMB client. Fixes: https://pagure.io/freeipa/issue/3999 Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
118 lines
2.3 KiB
Makefile
118 lines
2.3 KiB
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = 1.7 subdir-objects
|
|
|
|
NULL =
|
|
|
|
AM_CFLAGS = $(NULL)
|
|
if HAVE_GCC
|
|
AM_CFLAGS += -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith \
|
|
-Wcast-align -Werror-implicit-function-declaration \
|
|
$(NULL)
|
|
endif
|
|
export AM_CFLAGS
|
|
|
|
IPA_CONF_FILE=$(sysconfdir)/ipa/default.conf
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(srcdir) \
|
|
-I$(top_srcdir)/util \
|
|
-I$(top_srcdir)/asn1 \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DBINDIR=\""$(bindir)"\" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
-DLOCALEDIR=\""$(localedir)"\" \
|
|
-DIPACONFFILE=\""$(IPA_CONF_FILE)"\" \
|
|
$(KRB5_CFLAGS) \
|
|
$(LDAP_CFLAGS) \
|
|
$(SASL_CFLAGS) \
|
|
$(POPT_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(INI_CFLAGS) \
|
|
$(NULL)
|
|
|
|
sbin_PROGRAMS = \
|
|
ipa-getkeytab \
|
|
ipa-rmkeytab \
|
|
ipa-join \
|
|
$(NULL)
|
|
|
|
sbin_SCRIPTS = \
|
|
ipa-certupdate \
|
|
ipa-client-automount \
|
|
ipa-client-install \
|
|
ipa-client-samba \
|
|
$(NULL)
|
|
|
|
ipa_getkeytab_SOURCES = \
|
|
ipa-getkeytab.c \
|
|
ipa-client-common.c \
|
|
$(KRB5_UTIL_SRCS) \
|
|
$(NULL)
|
|
|
|
ipa_getkeytab_LDADD = \
|
|
$(top_builddir)/asn1/libipaasn1.la \
|
|
$(top_builddir)/util/libutil.la \
|
|
$(KRB5_LIBS) \
|
|
$(LDAP_LIBS) \
|
|
$(SASL_LIBS) \
|
|
$(POPT_LIBS) \
|
|
$(LIBINTL_LIBS) \
|
|
$(INI_LIBS) \
|
|
$(NULL)
|
|
|
|
ipa_rmkeytab_SOURCES = \
|
|
ipa-rmkeytab.c \
|
|
ipa-client-common.c \
|
|
$(NULL)
|
|
|
|
ipa_rmkeytab_LDADD = \
|
|
$(KRB5_LIBS) \
|
|
$(POPT_LIBS) \
|
|
$(LIBINTL_LIBS) \
|
|
$(NULL)
|
|
|
|
ipa_join_SOURCES = \
|
|
config.c \
|
|
ipa-client-common.c \
|
|
ipa-join.c \
|
|
$(NULL)
|
|
|
|
ipa_join_LDADD = \
|
|
$(top_builddir)/util/libutil.la \
|
|
$(KRB5_LIBS) \
|
|
$(LDAP_LIBS) \
|
|
$(SASL_LIBS) \
|
|
$(XMLRPC_LIBS) \
|
|
$(POPT_LIBS) \
|
|
$(LIBINTL_LIBS) \
|
|
$(NULL)
|
|
|
|
SUBDIRS = \
|
|
share \
|
|
man \
|
|
sysconfig \
|
|
$(NULL)
|
|
|
|
noinst_HEADERS = \
|
|
ipa-client-common.h
|
|
|
|
EXTRA_DIST = \
|
|
ipa-certupdate.in \
|
|
ipa-client-automount.in \
|
|
ipa-client-install.in \
|
|
ipa-client-samba.in \
|
|
$(NULL)
|
|
|
|
install-data-hook:
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(IPA_SYSCONF_DIR)/nssdb
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(localstatedir)/lib/ipa-client/pki
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(localstatedir)/lib/ipa-client/sysrestore
|
|
|
|
|
|
PYTHON_SHEBANG = $(sbin_SCRIPTS)
|
|
|
|
include $(top_srcdir)/Makefile.pythonscripts.am
|