On 29/01/2023 14:12, Rowland Penny via samba wrote:>
>
> Arch has always worked as an AD DC, but they did use Heimdal, if they
> have moved to MIT, then they have also moved to the 'experimental'
camp.
After a bit of digging, Arch is still using Heimdal, or that is how I
read it.
From their samba PKGBUILD in git, there is this:
./configure --enable-fhs \
--prefix=/usr \
--sysconfdir=/etc \
--sbindir=/usr/bin \
--libdir=/usr/lib \
--libexecdir=/usr/lib/samba \
--localstatedir=/var \
--with-configdir=/etc/samba \
--with-lockdir=/var/cache/samba \
--with-sockets-dir=/run/samba \
--with-piddir=/run \
--with-ads \
--with-ldap \
--with-winbind \
--with-acl-support \
--with-systemd \
--systemd-install-services \
--with-pam \
--with-pammodulesdir=/usr/lib/security \
--bundled-libraries=!tdb,!talloc,!pytalloc-util,!tevent,!popt,!ldb,!pyldb-util
\
--with-shared-modules=${_samba4_idmap_modules},${_samba4_pdb_modules},${_samba4_auth_modules},vfs_io_uring
\
--disable-rpath-install \
--with-profiling-data
# Add this to the options once it's working...
#--with-system-mitkrb5 /opt/heimdal
Notice that '--with-system-mitkrb5' is commented out and that needs to
be set to build with MIT.
Rowland