mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
430 lines
13 KiB
Cheetah
430 lines
13 KiB
Cheetah
Summary: Samba SMB client and server
|
|
Name: samba
|
|
Version: PVERSION
|
|
Release: PRELEASE
|
|
Copyright: GNU GPL version 2
|
|
Group: Networking
|
|
Source: http://download.samba.org/samba/ftp/samba-%{version}.tar.bz2
|
|
Packager: Gerald Carter [Samba-Team] <jerry@samba.org>
|
|
Requires: pam >= 0.72 kernel >= 2.2.1 glibc >= 2.1.2
|
|
Prereq: chkconfig fileutils
|
|
Provides: samba = %{version}
|
|
Obsoletes: samba-common, samba-client, samba-swat
|
|
BuildRoot: /var/tmp/samba
|
|
Prefix: /usr
|
|
|
|
%description
|
|
Samba provides an SMB/CIFS server which can be used to provide
|
|
network file and print services to SMB/CIFS clients, including
|
|
various versions of MS Windows, OS/2, and other Linux machines.
|
|
Samba also provides some SMB clients, which complement the
|
|
built-in SMB filesystem in Linux. Samba uses NetBIOS over TCP/IP
|
|
(NetBT) protocols and does NOT need NetBEUI (Microsoft Raw NetBIOS
|
|
frame) protocol.
|
|
|
|
Samba 3.0 also introduces UNICODE support and kerberos/ldap
|
|
integration as a member server in a Windows 2000 domain.
|
|
|
|
Please refer to the WHATSNEW.txt document for fixup information.
|
|
|
|
%changelog
|
|
* Mon Nov 18 2002 Gerald Carter <jerry@samba.org>
|
|
- removed change log entries since history
|
|
is being maintained in CVS
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
## Build main Samba source
|
|
cd source
|
|
|
|
%ifarch ia64
|
|
libtoolize --copy --force # get it to recognize IA-64
|
|
autoheader
|
|
autoconf
|
|
EXTRA="-D_LARGEFILE64_SOURCE"
|
|
%endif
|
|
NUMCPU=`grep processor /proc/cpuinfo | wc -l`
|
|
CFLAGS="$RPM_OPT_FLAGS $EXTRA" ./configure \
|
|
--prefix=%{prefix} \
|
|
--localstatedir=/var \
|
|
--with-configdir=/etc/samba \
|
|
--with-privatedir=/etc/samba \
|
|
--with-fhs \
|
|
--with-quotas \
|
|
--with-smbmount \
|
|
--with-pam \
|
|
--with-pam_smbpass \
|
|
--with-syslog \
|
|
--with-utmp \
|
|
--with-sambabook=%{prefix}/share/swat/using_samba \
|
|
--with-swatdir=%{prefix}/share/swat \
|
|
--with-libsmbclient
|
|
make -j${NUMCPU} proto
|
|
make -j${NUMCPU} all nsswitch/libnss_wins.so modules
|
|
make -j${NUMCPU} debug2html
|
|
make -j${NUMCPU} bin/smbspool
|
|
|
|
# Remove some permission bits to avoid to many dependencies
|
|
find examples docs -type f | xargs -r chmod -x
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT/sbin
|
|
mkdir -p $RPM_BUILD_ROOT/etc/samba
|
|
mkdir -p $RPM_BUILD_ROOT/etc/{logrotate.d,pam.d,samba}
|
|
mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
|
|
mkdir -p $RPM_BUILD_ROOT%{prefix}/{bin,sbin}
|
|
mkdir -p $RPM_BUILD_ROOT%{prefix}/share/swat/{images,help,include,using_samba}
|
|
mkdir -p $RPM_BUILD_ROOT%{prefix}/share/swat/using_samba/{figs,gifs}
|
|
mkdir -p $RPM_BUILD_ROOTMANDIR_MACRO
|
|
mkdir -p $RPM_BUILD_ROOT/var/cache/samba
|
|
mkdir -p $RPM_BUILD_ROOT/var/{log,run}/samba
|
|
mkdir -p $RPM_BUILD_ROOT/var/spool/samba
|
|
mkdir -p $RPM_BUILD_ROOT/lib/security
|
|
mkdir -p $RPM_BUILD_ROOT%{prefix}/lib/samba/vfs
|
|
mkdir -p $RPM_BUILD_ROOT%{prefix}/{lib,include}
|
|
|
|
# Install standard binary files
|
|
for i in nmblookup smbclient smbpasswd smbstatus testparm testprns \
|
|
rpcclient smbspool smbcacls smbcontrol wbinfo smbmnt net smbgroupedit \
|
|
smbcacls pdbedit tdbbackup smbtree
|
|
do
|
|
install -m755 source/bin/$i $RPM_BUILD_ROOT%{prefix}/bin
|
|
done
|
|
|
|
for i in mksmbpasswd.sh smbtar findsmb
|
|
do
|
|
install -m755 source/script/$i $RPM_BUILD_ROOT%{prefix}/bin
|
|
done
|
|
|
|
# Install secure binary files
|
|
for i in smbd nmbd swat smbmount smbumount debug2html winbindd wrepld
|
|
do
|
|
install -m755 source/bin/$i $RPM_BUILD_ROOT%{prefix}/sbin
|
|
done
|
|
|
|
# we need a symlink for mount to recognise the smb and smbfs filesystem types
|
|
ln -sf %{prefix}/sbin/smbmount $RPM_BUILD_ROOT/sbin/mount.smbfs
|
|
ln -sf %{prefix}/sbin/smbmount $RPM_BUILD_ROOT/sbin/mount.smb
|
|
|
|
# This allows us to get away without duplicating code that
|
|
# sombody else can maintain for us.
|
|
cd source
|
|
make BASEDIR=$RPM_BUILD_ROOT/usr \
|
|
CONFIGDIR=$RPM_BUILD_ROOT/etc/samba \
|
|
LIBDIR=$RPM_BUILD_ROOT%{prefix}/lib/samba \
|
|
VARDIR=$RPM_BUILD_ROOT/var \
|
|
SBINDIR=$RPM_BUILD_ROOT%{prefix}/sbin \
|
|
BINDIR=$RPM_BUILD_ROOT%{prefix}/bin \
|
|
MANDIR=$RPM_BUILD_ROOTMANDIR_MACRO \
|
|
SWATDIR=$RPM_BUILD_ROOT%{prefix}/share/swat \
|
|
SAMBABOOK=$RPM_BUILD_ROOT%{prefix}/share/swat/using_samba \
|
|
installman installswat installdat installmodules
|
|
cd ..
|
|
|
|
# Install the nsswitch wins library
|
|
install -m755 source/nsswitch/libnss_wins.so $RPM_BUILD_ROOT/lib
|
|
( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_wins.so libnss_wins.so.2; )
|
|
|
|
# Install winbind shared libraries
|
|
install -m755 source/nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/lib
|
|
( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_winbind.so libnss_winbind.so.2; )
|
|
install -m755 source/nsswitch/pam_winbind.so $RPM_BUILD_ROOT/lib/security
|
|
|
|
# Install pam_smbpass.so
|
|
install -m755 source/bin/pam_smbpass.so $RPM_BUILD_ROOT/lib/security
|
|
|
|
# libsmbclient
|
|
install -m 755 source/bin/libsmbclient.so $RPM_BUILD_ROOT%{prefix}/lib/
|
|
install -m 755 source/bin/libsmbclient.a $RPM_BUILD_ROOT%{prefix}/lib/
|
|
install -m 644 source/include/libsmbclient.h $RPM_BUILD_ROOT%{prefix}/include/
|
|
|
|
# Install SWAT helper files
|
|
#for i in swat/help/*.html docs/htmldocs/*.html
|
|
#do
|
|
# install -m644 $i $RPM_BUILD_ROOT%{prefix}/share/swat/help
|
|
#done
|
|
#for i in swat/images/*.gif
|
|
#do
|
|
# install -m644 $i $RPM_BUILD_ROOT%{prefix}/share/swat/images
|
|
#done
|
|
#for i in swat/include/*.html
|
|
#do
|
|
# install -m644 $i $RPM_BUILD_ROOT%{prefix}/share/swat/include
|
|
#done
|
|
|
|
# Install the miscellany
|
|
install -m755 packaging/RedHat/smbprint $RPM_BUILD_ROOT%{prefix}/bin
|
|
install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT/etc/rc.d/init.d/smb
|
|
install -m755 packaging/RedHat/winbind.init $RPM_BUILD_ROOT/etc/rc.d/init.d/winbind
|
|
install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT%{prefix}/sbin/samba
|
|
install -m644 packaging/RedHat/samba.log $RPM_BUILD_ROOT/etc/logrotate.d/samba
|
|
install -m644 packaging/RedHat/smb.conf $RPM_BUILD_ROOT/etc/samba/smb.conf
|
|
install -m644 packaging/RedHat/smbusers $RPM_BUILD_ROOT/etc/samba/smbusers
|
|
install -m644 packaging/RedHat/samba.pamd $RPM_BUILD_ROOT/etc/pam.d/samba
|
|
install -m644 packaging/RedHat/samba.pamd.stack $RPM_BUILD_ROOT/etc/samba/samba.stack
|
|
install -m644 packaging/RedHat/samba.xinetd $RPM_BUILD_ROOT/etc/samba/samba.xinetd
|
|
echo 127.0.0.1 localhost > $RPM_BUILD_ROOT/etc/samba/lmhosts
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post
|
|
/sbin/chkconfig --add smb
|
|
/sbin/chkconfig --add winbind
|
|
/sbin/chkconfig smb off
|
|
/sbin/chkconfig winbind off
|
|
|
|
echo "Looking for old /etc/smb.conf..."
|
|
if [ -f /etc/smb.conf -a ! -f /etc/samba/smb.conf ]; then
|
|
echo "Moving old /etc/smb.conf to /etc/samba/smb.conf"
|
|
mv /etc/smb.conf /etc/samba/smb.conf
|
|
fi
|
|
|
|
echo "Looking for old /etc/smbusers..."
|
|
if [ -f /etc/smbusers -a ! -f /etc/samba/smbusers ]; then
|
|
echo "Moving old /etc/smbusers to /etc/samba/smbusers"
|
|
mv /etc/smbusers /etc/samba/smbusers
|
|
fi
|
|
|
|
echo "Looking for old /etc/lmhosts..."
|
|
if [ -f /etc/lmhosts -a ! -f /etc/samba/lmhosts ]; then
|
|
echo "Moving old /etc/lmhosts to /etc/samba/lmhosts"
|
|
mv /etc/lmhosts /etc/samba/lmhosts
|
|
fi
|
|
|
|
echo "Looking for old /etc/MACHINE.SID..."
|
|
if [ -f /etc/MACHINE.SID -a ! -f /etc/samba/MACHINE.SID ]; then
|
|
echo "Moving old /etc/MACHINE.SID to /etc/samba/MACHINE.SID"
|
|
mv /etc/MACHINE.SID /etc/samba/MACHINE.SID
|
|
fi
|
|
|
|
echo "Looking for old /etc/smbpasswd..."
|
|
if [ -f /etc/smbpasswd -a ! -f /etc/samba/smbpasswd ]; then
|
|
echo "Moving old /etc/smbpasswd to /etc/samba/smbpasswd"
|
|
mv /etc/smbpasswd /etc/samba/smbpasswd
|
|
fi
|
|
|
|
#
|
|
# For 2.2.1 we move the tdb files from /var/lock/samba to /var/cache/samba
|
|
# to preserve across reboots.
|
|
#
|
|
echo "Moving tdb files in /var/lock/samba/*.tdb to /var/cache/samba/*.tdb"
|
|
for i in /var/lock/samba/*.tdb
|
|
do
|
|
if [ -f $i ]; then
|
|
newname=`echo $i | sed -e's|var\/lock\/samba|var\/cache\/samba|'`
|
|
echo "Moving $i to $newname"
|
|
mv $i $newname
|
|
fi
|
|
done
|
|
|
|
# Remove the transient tdb files.
|
|
if [ -e /var/cache/samba/brlock.tdb ]; then
|
|
rm -f /var/cache/samba/brlock.tdb
|
|
fi
|
|
|
|
if [ -e /var/cache/samba/unexpected.tdb ]; then
|
|
rm -f /var/cache/samba/unexpected.tdb
|
|
fi
|
|
|
|
if [ -e /var/cache/samba/connections.tdb ]; then
|
|
rm -f /var/cache/samba/connections.tdb
|
|
fi
|
|
|
|
if [ -e /var/cache/samba/locking.tdb ]; then
|
|
rm -f /var/cache/samba/locking.tdb
|
|
fi
|
|
|
|
if [ -e /var/cache/samba/messages.tdb ]; then
|
|
rm -f /var/cache/samba/messages.tdb
|
|
fi
|
|
|
|
if [ -d /var/lock/samba ]; then
|
|
rm -rf /var/lock/samba
|
|
fi
|
|
|
|
# Add swat entry to /etc/services if not already there.
|
|
if !( grep ^[:space:]*swat /etc/services > /dev/null ) then
|
|
echo 'swat 901/tcp # Add swat service used via inetd' >> /etc/services
|
|
fi
|
|
|
|
# Add swat entry to /etc/inetd.conf if needed.
|
|
if [ -f /etc/inetd.conf ]; then
|
|
if !( grep ^[:space:]*swat /etc/inetd.conf > /dev/null ) then
|
|
echo 'swat stream tcp nowait.400 root %{prefix}/sbin/swat swat' >> /etc/inetd.conf
|
|
killall -1 inetd || :
|
|
fi
|
|
fi
|
|
|
|
# Add swat entry to xinetd.d if needed.
|
|
if [ -d $RPM_BUILD_ROOT/etc/xinetd.d -a ! -f /etc/xinetd.d/swat ]; then
|
|
mv /etc/samba/samba.xinetd /etc/xinetd.d/swat
|
|
else
|
|
rm -f /etc/samba/samba.xinetd
|
|
fi
|
|
|
|
# Install the correct version of the samba pam file, depending on pam version.
|
|
if [ -f /lib/security/pam_stack.so ]; then
|
|
echo "Installing stack version of /etc/pam.d/samba..."
|
|
mv /etc/samba/samba.stack /etc/pam.d/samba
|
|
else
|
|
echo "Installing non-stack version of /etc/pam.d/samba..."
|
|
rm -f /etc/samba/samba.stack
|
|
fi
|
|
|
|
# Create winbind nss client symlink
|
|
|
|
if [ -e /lib/libnss_winbind.so ]; then
|
|
ln -sf /lib/libnss_winbind.so /lib/libnss_winbind.so.2
|
|
fi
|
|
|
|
%preun
|
|
if [ $1 = 0 ] ; then
|
|
/sbin/chkconfig --del smb
|
|
|
|
# We want to remove the browse.dat and wins.dat files so they can not interfer with a new version of samba!
|
|
if [ -e /var/cache/samba/browse.dat ]; then
|
|
rm -f /var/cache/samba/browse.dat
|
|
fi
|
|
if [ -e /var/cache/samba/wins.dat ]; then
|
|
rm -f /var/cache/samba/wins.dat
|
|
fi
|
|
|
|
# Remove the transient tdb files.
|
|
if [ -e /var/cache/samba/brlock.tdb ]; then
|
|
rm -f /var/cache/samba/brlock.tdb
|
|
fi
|
|
|
|
if [ -e /var/cache/samba/unexpected.tdb ]; then
|
|
rm -f /var/cache/samba/unexpected.tdb
|
|
fi
|
|
|
|
if [ -e /var/cache/samba/connections.tdb ]; then
|
|
rm -f /var/cache/samba/connections.tdb
|
|
fi
|
|
|
|
if [ -e /var/cache/samba/locking.tdb ]; then
|
|
rm -f /var/cache/samba/locking.tdb
|
|
fi
|
|
|
|
if [ -e /var/cache/samba/messages.tdb ]; then
|
|
rm -f /var/cache/samba/messages.tdb
|
|
fi
|
|
|
|
# Remove winbind nss client symlink
|
|
|
|
if [ -L /lib/libnss_winbind.so.2 ]; then
|
|
rm -f /lib/libnss_winbind.so.2
|
|
fi
|
|
fi
|
|
|
|
%postun
|
|
# Only delete remnants of samba if this is the final deletion.
|
|
if [ $1 = 0 ] ; then
|
|
if [ -x /etc/pam.d/samba ]; then
|
|
rm -f /etc/pam.d/samba
|
|
fi
|
|
if [ -e /var/log/samba ]; then
|
|
rm -rf /var/log/samba
|
|
fi
|
|
if [ -e /var/cache/samba ]; then
|
|
rm -rf /var/cache/samba
|
|
fi
|
|
|
|
# Remove swat entries from /etc/inetd.conf and /etc/services
|
|
cd /etc
|
|
tmpfile=/etc/tmp.$$
|
|
if [ -f /etc/inetd.conf ]; then
|
|
# preserve inetd.conf permissions.
|
|
cp -p /etc/inetd.conf $tmpfile
|
|
sed -e '/^[:space:]*swat.*$/d' /etc/inetd.conf > $tmpfile
|
|
mv $tmpfile inetd.conf
|
|
fi
|
|
# preserve services permissions.
|
|
cp -p /etc/services $tmpfile
|
|
sed -e '/^[:space:]*swat.*$/d' /etc/services > $tmpfile
|
|
mv $tmpfile /etc/services
|
|
|
|
# Remove swat entry from /etc/xinetd.d
|
|
if [ -f /etc/xinetd.d/swat ]; then
|
|
rm -r /etc/xinetd.d/swat
|
|
fi
|
|
fi
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README COPYING Manifest Read-Manifest-Now
|
|
%doc WHATSNEW.txt Roadmap
|
|
%doc docs
|
|
%doc swat/README
|
|
%doc examples
|
|
%{prefix}/sbin/smbd
|
|
%{prefix}/sbin/nmbd
|
|
%{prefix}/sbin/swat
|
|
%{prefix}/bin/smbmnt
|
|
%{prefix}/sbin/smbmount
|
|
%{prefix}/sbin/smbumount
|
|
%{prefix}/sbin/winbindd
|
|
%{prefix}/sbin/wrepld
|
|
%{prefix}/sbin/samba
|
|
%{prefix}/sbin/debug2html
|
|
/sbin/mount.smbfs
|
|
/sbin/mount.smb
|
|
%{prefix}/bin/mksmbpasswd.sh
|
|
%{prefix}/bin/smbclient
|
|
%{prefix}/bin/smbspool
|
|
%{prefix}/bin/rpcclient
|
|
%{prefix}/bin/testparm
|
|
%{prefix}/bin/testprns
|
|
%{prefix}/bin/findsmb
|
|
%{prefix}/bin/smbstatus
|
|
%{prefix}/bin/nmblookup
|
|
%{prefix}/bin/smbpasswd
|
|
%{prefix}/bin/smbtar
|
|
%{prefix}/bin/smbprint
|
|
%{prefix}/bin/smbcontrol
|
|
%{prefix}/bin/wbinfo
|
|
%{prefix}/bin/net
|
|
%{prefix}/bin/smbgroupedit
|
|
%{prefix}/bin/smbcacls
|
|
%{prefix}/bin/pdbedit
|
|
%{prefix}/bin/tdbbackup
|
|
%{prefix}/bin/smbtree
|
|
%attr(755,root,root) /lib/libnss_wins.s*
|
|
%attr(755,root,root) %{prefix}/lib/samba/vfs/*.so
|
|
%attr(755,root,root) %{prefix}/lib/samba/*.dat
|
|
%{prefix}/include/libsmbclient.h
|
|
%{prefix}/lib/libsmbclient.a
|
|
%{prefix}/lib/libsmbclient.so
|
|
%{prefix}/share/swat/help/*
|
|
%{prefix}/share/swat/images/*
|
|
%{prefix}/share/swat/include/*.html
|
|
%{prefix}/share/swat/lang/*/help/*
|
|
%{prefix}/share/swat/lang/*/images/*
|
|
%{prefix}/share/swat/lang/*/include/*.html
|
|
%{prefix}/share/swat/using_samba/*
|
|
%config(noreplace) /etc/samba/lmhosts
|
|
%config(noreplace) /etc/samba/smb.conf
|
|
%config(noreplace) /etc/samba/smbusers
|
|
/etc/samba/samba.stack
|
|
/etc/samba/samba.xinetd
|
|
/etc/rc.d/init.d/smb
|
|
/etc/rc.d/init.d/winbind
|
|
/etc/logrotate.d/samba
|
|
%config(noreplace) /etc/pam.d/samba
|
|
MANDIR_MACRO/man1/*
|
|
MANDIR_MACRO/man5/*
|
|
MANDIR_MACRO/man7/*
|
|
MANDIR_MACRO/man8/*
|
|
%attr(755,root,root) %dir /var/cache/samba
|
|
%dir /var/log/samba
|
|
%dir /var/run/samba
|
|
%attr(1777,root,root) %dir /var/spool/samba
|
|
%attr(-,root,root) /lib/libnss_winbind.so
|
|
%attr(-,root,root) /lib/security/pam_winbind.so
|
|
%attr(-,root,root) /lib/security/pam_smbpass.so
|