$Id: patch-obsd35_samba_3.0.10 1023 2008-11-28 07:31:02Z ranga $ samba 3.0.10 patch for OpenBSD 3.5's /usr/ports/net/samba Apply by doing: cd /usr/ports patch -p0 < patch-obsd35_samba_3.0.10 And then build samba: cd net/samba/devel make clean make To install, remove the existing samba pkg (if installed) and: make install See /usr/local/share/doc/samba/README.OpenBSD for config info. diff net/samba.orig/devel/Makefile net/samba/devel/Makefile --- net/samba.orig/devel/Makefile Wed Dec 31 16:00:00 1969 +++ net/samba/devel/Makefile Sun Jun 20 12:44:19 2004 @@ -0,0 +1,85 @@ +# $OpenBSD: Makefile,v 1.21 2003/10/26 09:33:23 sturm Exp $ + +COMMENT= "SMB and CIFS client and server for UNIX" + +DISTNAME= samba-3.0.10 +CATEGORIES= net +MASTER_SITES= http://us1.samba.org/samba/ftp/ \ + http://us4.samba.org/samba/ftp/ + +HOMEPAGE= http://www.samba.org/ + +AUTOCONF_VERSION= 2.54 +LIB_DEPENDS= popt::devel/popt + +# GPL +PERMIT_PACKAGE_CDROM= Yes +PERMIT_PACKAGE_FTP= Yes +PERMIT_DISTFILES_CDROM= Yes +PERMIT_DISTFILES_FTP= Yes + +MAKE_FLAGS= PASSWD_PROGRAM="/usr/bin/passwd" +FAKE_FLAGS= prefix="${WRKINST}${PREFIX}" \ + BASEDIR="${WRKINST}${PREFIX}" \ + LIBDIR="${WRKINST}${PREFIX}/lib/samba" \ + PIDDIR="${WRKINST}/var/run" \ + SWATDIR="${WRKINST}${PREFIX}/share/swat" \ + SBINDIR="${WRKINST}${PREFIX}/libexec" \ + VARDIR="${WRKINST}/var" + +CONFDIR= ${SYSCONFDIR}/samba +SAMBA_SPOOL= /var/spool/samba +SAMBA_LOGDIR= /var/log +SUBST_VARS= SAMBA_SPOOL CONFDIR + +SEPARATE_BUILD= concurrent +CONFIGURE_STYLE= autoconf +CONFIGURE_ARGS= --with-libdir="${PREFIX}/lib/samba" \ + --localstatedir="/var" \ + --sbindir="${PREFIX}/libexec" \ + --disable-cups \ + --with-configdir="${CONFDIR}" \ + --with-lockdir="${SAMBA_SPOOL}" \ + --with-piddir="/var/run" \ + --with-logfilebase="${SAMBA_LOGDIR}" \ + --with-privatedir="${CONFDIR}" \ + --with-swatdir="${PREFIX}/share/swat" \ + --with-ssl \ + --with-sslinc="/usr/include/ssl" \ + --with-ssllib="/usr/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +# Warning: these aditional options have not been tested. +#CONFIGURE_ARGS+= --with-afs +#CONFIGURE_ARGS+= --with-dfs +#CONFIGURE_ARGS+= --with-krb5=base-dir + +NO_REGRESS= Yes + +WRKDIST= ${WRKDIR}/${DISTNAME}/source + +SAMBA_DOCS=${WRKSRC}/../README \ + ${WRKSRC}/../docs/*.pdf \ + ${WRKSRC}/../docs/THANKS \ + ${WRKSRC}/../docs/history \ + ${WRKSRC}/../docs/registry/*.reg +SAMPLE_CONFIG= ${PREFIX}/share/examples/samba/smb.conf.default + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/samba + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/samba + @cp -R ${WRKSRC}/../examples/* ${PREFIX}/share/examples/samba + @chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/examples/samba + ${INSTALL_DATA} ${FILESDIR}/README.OpenBSD ${PREFIX}/share/doc/samba + @for i in ${SAMBA_DOCS}; do \ + ${INSTALL_DATA} $$i ${PREFIX}/share/doc/samba ; \ + done + @sed -e 's:/usr/spool/samba:${SAMBA_SPOOL}:g' \ + -e 's:/usr/local/samba/var/log:${SAMBA_LOGDIR}/smbd:g' \ + ${WRKSRC}/../examples/smb.conf.default > ${SAMPLE_CONFIG} + ${INSTALL_SCRIPT} ${WRKSRC}/script/mksmbpasswd.sh ${PREFIX}/bin + @chown ${BINOWN}:${BINGRP} ${PREFIX}/bin/smbpasswd + @chmod 111 ${PREFIX}/bin/smbpasswd + +.include diff net/samba.orig/devel/distinfo net/samba/devel/distinfo --- net/samba.orig/devel/distinfo Wed Dec 31 16:00:00 1969 +++ net/samba/devel/distinfo Sun Jun 20 09:12:14 2004 @@ -0,0 +1,3 @@ +MD5 (samba-3.0.10.tar.gz) = b19fd86d3c11a1b43f75a5988cd9ceeb +RMD160 (samba-3.0.10.tar.gz) = 8065b34b19f6c508ef283d2d54822f741f35ac38 +SHA1 (samba-3.0.10.tar.gz) = 1cb80bbd9feb7da85aac64bd308a52c662b1cc8a diff net/samba.orig/devel/files/README.OpenBSD net/samba/devel/files/README.OpenBSD --- net/samba.orig/devel/files/README.OpenBSD Wed Dec 31 16:00:00 1969 +++ net/samba/devel/files/README.OpenBSD Mon Jan 5 18:25:31 2004 @@ -0,0 +1,46 @@ +Using samba package in OpenBSD environment: + +1. Edit /etc/samba/smb.conf to suit your needs. + +2. Edit /etc/rc.conf.local: + ... + smbd_flags="-D" # for normal use: "-D" + nmbd_flags="-D" # for normal use: "-D" + ... + +3. Edit /etc/rc.local: + echo -n 'starting local daemons:' + ... + if [ -f /etc/samba/smb.conf ]; then + if [ X"${smbd_flags}" != X"NO" -a -x /usr/local/libexec/smbd ]; then + echo -n ' smbd'; /usr/local/libexec/smbd ${smbd_flags} + fi + if [ X"${nmbd_flags}" != X"NO" -a -x /usr/local/libexec/nmbd ]; then + echo -n ' nmbd'; /usr/local/libexec/nmbd ${nmbd_flags} + fi + fi + ... + echo '.' + +Steps 4 and 5 are only necessary if you want to enable swat (Samba +Web Administration Tool). Please note that administering the server +with swat over a network is inadvisable as passwords are passed in +the clear. You can avoid this problem by using ssh forwarding to +port 901. + +4. add the following entry to /etc/inetd.conf: + + ... + swat stream tcp nowait.400 root /usr/local/libexec/swat swat + ... + +5. add the following entry to /etc/services: + + ... + swat 901/tcp # samba admin service + ... + +See documentation files in /usr/local/share/doc/samba and example config +files in /usr/local/share/examples/samba for more information. + + diff net/samba.orig/devel/pkg/DEINSTALL net/samba/devel/pkg/DEINSTALL --- net/samba.orig/devel/pkg/DEINSTALL Wed Dec 31 16:00:00 1969 +++ net/samba/devel/pkg/DEINSTALL Sat Oct 25 16:52:30 2003 @@ -0,0 +1,27 @@ +#!/bin/sh +# $OpenBSD: DEINSTALL,v 1.4 2003/10/18 15:36:34 naddy Exp $ +# +# samba de-installation + +set -e +PATH=/bin:/usr/bin:/sbin:/usr/sbin +PREFIX=${PKG_PREFIX:-/usr/local} +CONFIG_DIR=${CONFDIR} +SAMBA_SPOOL=${SAMBA_SPOOL} + +if [ "$PKG_DELETE_EXTRA" != Yes -a -d ${CONFIG_DIR} ]; then + echo + echo "+---------------" + echo "| To completely deinstall the $1 package you need to perform" + echo "| these steps as root:" + echo "|" + echo "| rm -rf $CONFIG_DIR" + echo "| rm -rf $SAMBA_SPOOL" + echo "|" + echo "| Do not do this if you plan on re-installing $1" + echo "| at some future time." + echo "+---------------" + echo +fi + +exit 0 diff net/samba.orig/devel/pkg/DESCR net/samba/devel/pkg/DESCR --- net/samba.orig/devel/pkg/DESCR Wed Dec 31 16:00:00 1969 +++ net/samba/devel/pkg/DESCR Thu Aug 21 07:46:52 2003 @@ -0,0 +1,10 @@ +The Samba suite is a set of programs which run under most UNIX and +UNIX-like operating systems. These programs deliver most of the important +functionality of a Microsoft Lan Manager server. That is, they support +remote access to UNIX filespace and UNIX printers from Lan Manager +compatible clients. In practical terms, this means that such clients +can connect to and use UNIX filespace as if it was a local disk drive, +or UNIX printers as if they were local printers. + +Some of the most popular Lan Manager compatible clients include Lan +Manager itself, Windows for Workgroups, OS/2 and Windows NT. diff net/samba.orig/devel/pkg/INSTALL net/samba/devel/pkg/INSTALL --- net/samba.orig/devel/pkg/INSTALL Wed Dec 31 16:00:00 1969 +++ net/samba/devel/pkg/INSTALL Mon May 12 11:02:45 2003 @@ -0,0 +1,78 @@ +#!/bin/sh +# $OpenBSD: INSTALL,v 1.3 2003/05/12 18:02:45 sturm Exp $ +# +# Pre/post-installation setup of samba + +# exit on errors, use a sane path and install prefix +# +set -e +PATH=/bin:/usr/bin:/sbin:/usr/sbin +PREFIX=${PKG_PREFIX:-/usr/local} +CONFIG_DIR=${CONFDIR} +CONFIG_FILE=$CONFIG_DIR/smb.conf +SAMPLE_CONFIG_DIR=$PREFIX/share/examples/samba +SAMBA_SPOOL=${SAMBA_SPOOL} + +install -d -o root -g wheel -m 1755 $SAMBA_SPOOL + +# Function: tell the user what s/he needs to do to use the port just installed +# +do_notice() +{ + echo + echo "+---------------" + echo "| The existing $1 configuration files in $CONFIG_DIR," + echo "| have NOT been changed. You may want to compare them to the" + echo "| current sample files, $SAMPLE_CONFIG_DIR," + echo "| and update your configuration as needed." + echo "+---------------" + echo +} + +# Function: install the samba configuration files from the samples +# +do_install() +{ + install -d -o root -g wheel -m 755 $CONFIG_DIR + cat /etc/passwd | $PREFIX/bin/mksmbpasswd.sh > $CONFIG_DIR/smbpasswd; \ + chmod 600 $CONFIG_DIR/smbpasswd + install -o root -g wheel -m 644 $SAMPLE_CONFIG_DIR/smb.conf.default $CONFIG_FILE + echo + echo "+---------------" + echo "| The $1 configuration files in $CONFIG_DIR," + echo "| have been installed. Please view these files and change" + echo "| the configuration to meet your needs." + echo "+---------------" + echo + +} + +# verify proper execution +# +if [ $# -ne 2 ]; then + echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 + exit 1 +fi + +# Verify/process the command +# +case $2 in + PRE-INSTALL) + : nothing to pre-install for this port + ;; + POST-INSTALL) + if [ ! -d $CONFIG_DIR ]; then + do_install $1 + elif [ ! -f $CONFIG_FILE ]; then + do_install $1 + else + do_notice $1 + fi + ;; + *) + echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 + exit 1 + ;; +esac + +exit 0 diff net/samba.orig/devel/pkg/PLIST net/samba/devel/pkg/PLIST --- net/samba.orig/devel/pkg/PLIST Wed Dec 31 16:00:00 1969 +++ net/samba/devel/pkg/PLIST Sun Jun 20 12:47:09 2004 @@ -0,0 +1,688 @@ +@comment $OpenBSD: PLIST,v 1.6 2003/10/18 15:36:34 naddy Exp $ +bin/findsmb +bin/mksmbpasswd.sh +bin/net +bin/nmblookup +bin/ntlm_auth +bin/pdbedit +bin/profiles +bin/rpcclient +bin/smbcacls +bin/smbclient +bin/smbcontrol +bin/smbcquotas +bin/smbpasswd +bin/smbspool +bin/smbstatus +bin/smbtar +bin/smbtree +bin/tdbbackup +bin/tdbdump +bin/testparm +bin/testprns +include/libsmbclient.h +lib/samba/charset/CP437.so +lib/samba/charset/CP850.so +lib/samba/de.msg +lib/samba/en.msg +lib/samba/fr.msg +lib/samba/it.msg +lib/samba/ja.msg +lib/samba/libsmbclient.so +lib/samba/lowcase.dat +lib/samba/nl.msg +lib/samba/pl.msg +lib/samba/tr.msg +lib/samba/upcase.dat +lib/samba/valid.dat +lib/samba/vfs/audit.so +lib/samba/vfs/cap.so +lib/samba/vfs/default_quota.so +lib/samba/vfs/expand_msdfs.so +lib/samba/vfs/extd_audit.so +lib/samba/vfs/fake_perms.so +lib/samba/vfs/full_audit.so +lib/samba/vfs/netatalk.so +lib/samba/vfs/readonly.so +lib/samba/vfs/recycle.so +lib/samba/vfs/shadow_copy.so +libexec/nmbd +libexec/smbd +libexec/swat +man/man1/editreg.1 +man/man1/findsmb.1 +man/man1/log2pcap.1 +man/man1/nmblookup.1 +man/man1/ntlm_auth.1 +man/man1/profiles.1 +man/man1/rpcclient.1 +man/man1/smbcacls.1 +man/man1/smbclient.1 +man/man1/smbcontrol.1 +man/man1/smbcquotas.1 +man/man1/smbget.1 +man/man1/smbsh.1 +man/man1/smbstatus.1 +man/man1/smbtar.1 +man/man1/smbtree.1 +man/man1/testparm.1 +man/man1/testprns.1 +man/man1/vfstest.1 +man/man1/wbinfo.1 +man/man5/lmhosts.5 +man/man5/smb.conf.5 +man/man5/smbgetrc.5 +man/man5/smbpasswd.5 +man/man7/samba.7 +man/man8/mount.cifs.8 +man/man8/net.8 +man/man8/nmbd.8 +man/man8/pam_winbind.8 +man/man8/pdbedit.8 +man/man8/smbd.8 +man/man8/smbmnt.8 +man/man8/smbmount.8 +man/man8/smbpasswd.8 +man/man8/smbspool.8 +man/man8/smbumount.8 +man/man8/swat.8 +man/man8/tdbbackup.8 +man/man8/tdbdump.8 +man/man8/winbindd.8 +share/doc/samba/NT4-Locking.reg +share/doc/samba/NT4_PlainPassword.reg +share/doc/samba/README +share/doc/samba/README.OpenBSD +share/doc/samba/Samba-Developers-Guide.pdf +share/doc/samba/Samba-Guide.pdf +share/doc/samba/Samba-HOWTO-Collection.pdf +share/doc/samba/THANKS +share/doc/samba/Win-2Kx-XPP-DeleteCachedProfiles.reg +share/doc/samba/Win-2Kx-XPP-ForceLocalProfile.reg +share/doc/samba/Win-NT-DeleteRoamingProfile.reg +share/doc/samba/Win2000_PlainPassword.reg +share/doc/samba/Win95_PlainPassword.reg +share/doc/samba/Win98_PlainPassword.reg +share/doc/samba/Win9X-CacheHandling.reg +share/doc/samba/WinME_PlainPassword.reg +share/doc/samba/WinXP_PlainPassword.reg +share/doc/samba/WinXP_SignOrSeal.reg +share/doc/samba/WindowsTerminalServer.reg +share/doc/samba/history +share/examples/samba/LDAP/README +share/examples/samba/LDAP/convertSambaAccount +share/examples/samba/LDAP/get_next_oid +share/examples/samba/LDAP/ldapsync.pl +share/examples/samba/LDAP/samba-nds.schema +share/examples/samba/LDAP/samba-schema-netscapeds4.x +share/examples/samba/LDAP/samba-schema-netscapeds5.x +share/examples/samba/LDAP/samba-schema.IBMSecureWay +share/examples/samba/LDAP/samba.schema +share/examples/samba/LDAP/samba.schema.at.IBM-DS +share/examples/samba/LDAP/samba.schema.oc.IBM-DS +share/examples/samba/LDAP/smbldap-tools/CONTRIBUTORS +share/examples/samba/LDAP/smbldap-tools/COPYING +share/examples/samba/LDAP/smbldap-tools/ChangeLog +share/examples/samba/LDAP/smbldap-tools/FILES +share/examples/samba/LDAP/smbldap-tools/INFRASTRUCTURE +share/examples/samba/LDAP/smbldap-tools/INSTALL +share/examples/samba/LDAP/smbldap-tools/Makefile +share/examples/samba/LDAP/smbldap-tools/README +share/examples/samba/LDAP/smbldap-tools/TODO +share/examples/samba/LDAP/smbldap-tools/cgi/README +share/examples/samba/LDAP/smbldap-tools/cgi/ldappass.cgi +share/examples/samba/LDAP/smbldap-tools/mkntpwd/Makefile +share/examples/samba/LDAP/smbldap-tools/mkntpwd/getopt.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/getopt.h +share/examples/samba/LDAP/smbldap-tools/mkntpwd/md4.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/mkntpwd.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/mkntpwd.h +share/examples/samba/LDAP/smbldap-tools/mkntpwd/smbdes.c +share/examples/samba/LDAP/smbldap-tools/smbldap-groupadd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupdel.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupmod.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupshow.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-migrate-accounts.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-migrate-groups.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-passwd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-populate.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-tools.spec +share/examples/samba/LDAP/smbldap-tools/smbldap-useradd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-userdel.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-usermod.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-usershow.pl +share/examples/samba/LDAP/smbldap-tools/smbldap_conf.pm +share/examples/samba/LDAP/smbldap-tools/smbldap_tools.pm +share/examples/samba/README +share/examples/samba/VFS/Makefile.in +share/examples/samba/VFS/README +share/examples/samba/VFS/autogen.sh +share/examples/samba/VFS/configure.in +share/examples/samba/VFS/install-sh +share/examples/samba/VFS/shadow_copy_test.c +share/examples/samba/VFS/skel_opaque.c +share/examples/samba/VFS/skel_transparent.c +share/examples/samba/auth/Makefile +share/examples/samba/auth/auth_skel.c +share/examples/samba/auth/crackcheck/Makefile +share/examples/samba/auth/crackcheck/crackcheck.c +share/examples/samba/autofs/auto.smb +share/examples/samba/dce-dfs/README +share/examples/samba/dce-dfs/smb.conf +share/examples/samba/genlogon/genlogon.pl +share/examples/samba/libsmbclient/Makefile +share/examples/samba/libsmbclient/README +share/examples/samba/libsmbclient/testacl.c +share/examples/samba/libsmbclient/testbrowse.c +share/examples/samba/libsmbclient/testsmbc.c +share/examples/samba/libsmbclient/tree.c +share/examples/samba/misc/extra_smbstatus +share/examples/samba/misc/modify_samba_config.pl +share/examples/samba/misc/swat.pl +share/examples/samba/misc/wall.perl +share/examples/samba/nss/nss_winbind.c +share/examples/samba/nss/nss_winbind.h +share/examples/samba/nss/wbtest.c +share/examples/samba/ntlogon/README +share/examples/samba/ntlogon/ntlogon.conf +share/examples/samba/ntlogon/ntlogon.py +share/examples/samba/pdb/Makefile +share/examples/samba/pdb/README +share/examples/samba/pdb/mysql/mysql.dump +share/examples/samba/pdb/mysql/smb.conf +share/examples/samba/pdb/pdb_test.c +share/examples/samba/pdb/sambapdb.dtd +share/examples/samba/printer-accounting/README +share/examples/samba/printer-accounting/acct-all +share/examples/samba/printer-accounting/acct-sum +share/examples/samba/printer-accounting/hp5-redir +share/examples/samba/printer-accounting/lp-acct +share/examples/samba/printer-accounting/printcap +share/examples/samba/printing/VampireDriversFunctions +share/examples/samba/printing/prtpub.c +share/examples/samba/printing/readme.prtpub +share/examples/samba/printing/smbprint +share/examples/samba/printing/smbprint.sysv +share/examples/samba/scripts/backtrace +share/examples/samba/smb.conf.default +share/examples/samba/svr4-startup/README +share/examples/samba/svr4-startup/samba.server +share/examples/samba/tridge/README +share/examples/samba/tridge/smb.conf +share/examples/samba/tridge/smb.conf.WinNT +share/examples/samba/tridge/smb.conf.fjall +share/examples/samba/tridge/smb.conf.lapland +share/examples/samba/tridge/smb.conf.vittjokk +share/examples/samba/validchars/msdos70.out +share/examples/samba/validchars/nwdos70.out +share/examples/samba/validchars/readme +share/examples/samba/validchars/validchr.c +share/examples/samba/validchars/validchr.com +share/examples/samba/wins_hook/README +share/examples/samba/wins_hook/dns_update +share/swat/help/Samba-Developers-Guide/CodingSuggestions.html +share/swat/help/Samba-Developers-Guide/Packaging.html +share/swat/help/Samba-Developers-Guide/architecture.html +share/swat/help/Samba-Developers-Guide/contributing.html +share/swat/help/Samba-Developers-Guide/debug.html +share/swat/help/Samba-Developers-Guide/index.html +share/swat/help/Samba-Developers-Guide/internals.html +share/swat/help/Samba-Developers-Guide/modules.html +share/swat/help/Samba-Developers-Guide/netbios.html +share/swat/help/Samba-Developers-Guide/ntdomain.html +share/swat/help/Samba-Developers-Guide/parsing.html +share/swat/help/Samba-Developers-Guide/pr01.html +share/swat/help/Samba-Developers-Guide/printing.html +share/swat/help/Samba-Developers-Guide/pt01.html +share/swat/help/Samba-Developers-Guide/pt02.html +share/swat/help/Samba-Developers-Guide/pt03.html +share/swat/help/Samba-Developers-Guide/pt04.html +share/swat/help/Samba-Developers-Guide/pt05.html +share/swat/help/Samba-Developers-Guide/pwencrypt.html +share/swat/help/Samba-Developers-Guide/registry.html +share/swat/help/Samba-Developers-Guide/rpc-plugin.html +share/swat/help/Samba-Developers-Guide/tracing.html +share/swat/help/Samba-Developers-Guide/unix-smb.html +share/swat/help/Samba-Developers-Guide/vfs.html +share/swat/help/Samba-Developers-Guide/windows-debug.html +share/swat/help/Samba-Developers-Guide/wins.html +share/swat/help/Samba-Guide/2000users.html +share/swat/help/Samba-Guide/Big500users.html +share/swat/help/Samba-Guide/DomApps.html +share/swat/help/Samba-Guide/HA.html +share/swat/help/Samba-Guide/appendix.html +share/swat/help/Samba-Guide/go01.html +share/swat/help/Samba-Guide/gpl.html +share/swat/help/Samba-Guide/happy.html +share/swat/help/Samba-Guide/images/AccountingNetwork.png +share/swat/help/Samba-Guide/images/Charity-Network.png +share/swat/help/Samba-Guide/images/HostAnnouncment.png +share/swat/help/Samba-Guide/images/NullConnect.png +share/swat/help/Samba-Guide/images/UNIX-Samba-and-LDAP.png +share/swat/help/Samba-Guide/images/UserConnect.png +share/swat/help/Samba-Guide/images/UserMgrNT4.png +share/swat/help/Samba-Guide/images/WINREPRESSME-Capture.png +share/swat/help/Samba-Guide/images/WINREPRESSME-Capture2.png +share/swat/help/Samba-Guide/images/WindowsXP-NullConnection.png +share/swat/help/Samba-Guide/images/WindowsXP-UserConnection.png +share/swat/help/Samba-Guide/images/XP-screen001.png +share/swat/help/Samba-Guide/images/acct2net.png +share/swat/help/Samba-Guide/images/ch7-dual-additive-LDAP-Ok.png +share/swat/help/Samba-Guide/images/ch7-dual-additive-LDAP.png +share/swat/help/Samba-Guide/images/ch7-fail-overLDAP.png +share/swat/help/Samba-Guide/images/ch7-singleLDAP.png +share/swat/help/Samba-Guide/images/ch8-migration.png +share/swat/help/Samba-Guide/images/chap4-net.png +share/swat/help/Samba-Guide/images/chap5-net.png +share/swat/help/Samba-Guide/images/chap6-net.png +share/swat/help/Samba-Guide/images/chap7-idresol.png +share/swat/help/Samba-Guide/images/chap7-net-Ar.png +share/swat/help/Samba-Guide/images/chap7-net2-Br.png +share/swat/help/Samba-Guide/images/chap9-ADSDC.png +share/swat/help/Samba-Guide/images/chap9-SambaDC.png +share/swat/help/Samba-Guide/images/lam-config.png +share/swat/help/Samba-Guide/images/lam-group-members.png +share/swat/help/Samba-Guide/images/lam-groups.png +share/swat/help/Samba-Guide/images/lam-hosts.png +share/swat/help/Samba-Guide/images/lam-login.png +share/swat/help/Samba-Guide/images/lam-users.png +share/swat/help/Samba-Guide/images/openmag.png +share/swat/help/Samba-Guide/images/wxpp001.png +share/swat/help/Samba-Guide/images/wxpp004.png +share/swat/help/Samba-Guide/images/wxpp006.png +share/swat/help/Samba-Guide/images/wxpp007.png +share/swat/help/Samba-Guide/images/wxpp008.png +share/swat/help/Samba-Guide/index.html +share/swat/help/Samba-Guide/ix01.html +share/swat/help/Samba-Guide/kerberos.html +share/swat/help/Samba-Guide/migration.html +share/swat/help/Samba-Guide/pr01.html +share/swat/help/Samba-Guide/pr02.html +share/swat/help/Samba-Guide/pr03.html +share/swat/help/Samba-Guide/preface.html +share/swat/help/Samba-Guide/primer.html +share/swat/help/Samba-Guide/secure.html +share/swat/help/Samba-Guide/simple.html +share/swat/help/Samba-Guide/small.html +share/swat/help/Samba-Guide/unixclients.html +share/swat/help/Samba-HOWTO-Collection/AccessControls.html +share/swat/help/Samba-HOWTO-Collection/AdvancedNetworkManagement.html +share/swat/help/Samba-HOWTO-Collection/Appendix.html +share/swat/help/Samba-HOWTO-Collection/Backup.html +share/swat/help/Samba-HOWTO-Collection/CUPS-printing.html +share/swat/help/Samba-HOWTO-Collection/ClientConfig.html +share/swat/help/Samba-HOWTO-Collection/DNSDHCP.html +share/swat/help/Samba-HOWTO-Collection/FastStart.html +share/swat/help/Samba-HOWTO-Collection/InterdomainTrusts.html +share/swat/help/Samba-HOWTO-Collection/IntroSMB.html +share/swat/help/Samba-HOWTO-Collection/NT4Migration.html +share/swat/help/Samba-HOWTO-Collection/NetworkBrowsing.html +share/swat/help/Samba-HOWTO-Collection/Other-Clients.html +share/swat/help/Samba-HOWTO-Collection/PolicyMgmt.html +share/swat/help/Samba-HOWTO-Collection/Portability.html +share/swat/help/Samba-HOWTO-Collection/ProfileMgmt.html +share/swat/help/Samba-HOWTO-Collection/SWAT.html +share/swat/help/Samba-HOWTO-Collection/SambaHA.html +share/swat/help/Samba-HOWTO-Collection/ServerType.html +share/swat/help/Samba-HOWTO-Collection/StandAloneServer.html +share/swat/help/Samba-HOWTO-Collection/VFS.html +share/swat/help/Samba-HOWTO-Collection/bugreport.html +share/swat/help/Samba-HOWTO-Collection/compiling.html +share/swat/help/Samba-HOWTO-Collection/diagnosis.html +share/swat/help/Samba-HOWTO-Collection/domain-member.html +share/swat/help/Samba-HOWTO-Collection/go01.html +share/swat/help/Samba-HOWTO-Collection/gpl.html +share/swat/help/Samba-HOWTO-Collection/groupmapping.html +share/swat/help/Samba-HOWTO-Collection/idmapper.html +share/swat/help/Samba-HOWTO-Collection/images/10small.png +share/swat/help/Samba-HOWTO-Collection/images/11small.png +share/swat/help/Samba-HOWTO-Collection/images/12small.png +share/swat/help/Samba-HOWTO-Collection/images/13small.png +share/swat/help/Samba-HOWTO-Collection/images/14small.png +share/swat/help/Samba-HOWTO-Collection/images/1small.png +share/swat/help/Samba-HOWTO-Collection/images/2small.png +share/swat/help/Samba-HOWTO-Collection/images/3small.png +share/swat/help/Samba-HOWTO-Collection/images/4small.png +share/swat/help/Samba-HOWTO-Collection/images/5small.png +share/swat/help/Samba-HOWTO-Collection/images/6small.png +share/swat/help/Samba-HOWTO-Collection/images/7small.png +share/swat/help/Samba-HOWTO-Collection/images/8small.png +share/swat/help/Samba-HOWTO-Collection/images/9small.png +share/swat/help/Samba-HOWTO-Collection/images/WME001.png +share/swat/help/Samba-HOWTO-Collection/images/WME002.png +share/swat/help/Samba-HOWTO-Collection/images/WME003.png +share/swat/help/Samba-HOWTO-Collection/images/WME005.png +share/swat/help/Samba-HOWTO-Collection/images/WME009.png +share/swat/help/Samba-HOWTO-Collection/images/WME010.png +share/swat/help/Samba-HOWTO-Collection/images/WME013.png +share/swat/help/Samba-HOWTO-Collection/images/WME014.png +share/swat/help/Samba-HOWTO-Collection/images/WXPP002.png +share/swat/help/Samba-HOWTO-Collection/images/WXPP003.png +share/swat/help/Samba-HOWTO-Collection/images/WXPP005.png +share/swat/help/Samba-HOWTO-Collection/images/WXPP009.png +share/swat/help/Samba-HOWTO-Collection/images/WXPP014.png +share/swat/help/Samba-HOWTO-Collection/images/a_small.png +share/swat/help/Samba-HOWTO-Collection/images/access1.png +share/swat/help/Samba-HOWTO-Collection/images/browsing1.png +share/swat/help/Samba-HOWTO-Collection/images/cups1.png +share/swat/help/Samba-HOWTO-Collection/images/cups2.png +share/swat/help/Samba-HOWTO-Collection/images/domain.png +share/swat/help/Samba-HOWTO-Collection/images/ethereal1.png +share/swat/help/Samba-HOWTO-Collection/images/ethereal2.png +share/swat/help/Samba-HOWTO-Collection/images/idmap-gid2sid.png +share/swat/help/Samba-HOWTO-Collection/images/idmap-sid2gid.png +share/swat/help/Samba-HOWTO-Collection/images/idmap-sid2uid.png +share/swat/help/Samba-HOWTO-Collection/images/idmap-store-gid2sid.png +share/swat/help/Samba-HOWTO-Collection/images/idmap-uid2sid.png +share/swat/help/Samba-HOWTO-Collection/images/idmap_winbind_no_loop.png +share/swat/help/Samba-HOWTO-Collection/images/pdftoepsonusb.png +share/swat/help/Samba-HOWTO-Collection/images/pdftosocket.png +share/swat/help/Samba-HOWTO-Collection/images/trusts1.png +share/swat/help/Samba-HOWTO-Collection/images/w2kp001.png +share/swat/help/Samba-HOWTO-Collection/images/w2kp002.png +share/swat/help/Samba-HOWTO-Collection/images/w2kp003.png +share/swat/help/Samba-HOWTO-Collection/images/w2kp004.png +share/swat/help/Samba-HOWTO-Collection/images/w2kp005.png +share/swat/help/Samba-HOWTO-Collection/images/wxpp001.png +share/swat/help/Samba-HOWTO-Collection/images/wxpp004.png +share/swat/help/Samba-HOWTO-Collection/images/wxpp006.png +share/swat/help/Samba-HOWTO-Collection/images/wxpp007.png +share/swat/help/Samba-HOWTO-Collection/images/wxpp008.png +share/swat/help/Samba-HOWTO-Collection/index.html +share/swat/help/Samba-HOWTO-Collection/install.html +share/swat/help/Samba-HOWTO-Collection/integrate-ms-networks.html +share/swat/help/Samba-HOWTO-Collection/introduction.html +share/swat/help/Samba-HOWTO-Collection/ix01.html +share/swat/help/Samba-HOWTO-Collection/locking.html +share/swat/help/Samba-HOWTO-Collection/migration.html +share/swat/help/Samba-HOWTO-Collection/msdfs.html +share/swat/help/Samba-HOWTO-Collection/optional.html +share/swat/help/Samba-HOWTO-Collection/pam.html +share/swat/help/Samba-HOWTO-Collection/passdb.html +share/swat/help/Samba-HOWTO-Collection/pr01.html +share/swat/help/Samba-HOWTO-Collection/pr02.html +share/swat/help/Samba-HOWTO-Collection/pr03.html +share/swat/help/Samba-HOWTO-Collection/printing.html +share/swat/help/Samba-HOWTO-Collection/problems.html +share/swat/help/Samba-HOWTO-Collection/samba-bdc.html +share/swat/help/Samba-HOWTO-Collection/samba-pdc.html +share/swat/help/Samba-HOWTO-Collection/securing-samba.html +share/swat/help/Samba-HOWTO-Collection/speed.html +share/swat/help/Samba-HOWTO-Collection/troubleshooting.html +share/swat/help/Samba-HOWTO-Collection/type.html +share/swat/help/Samba-HOWTO-Collection/unicode.html +share/swat/help/Samba-HOWTO-Collection/upgrading-to-3.0.html +share/swat/help/Samba-HOWTO-Collection/winbind.html +share/swat/help/editreg.1.html +share/swat/help/findsmb.1.html +share/swat/help/index.html +share/swat/help/lmhosts.5.html +share/swat/help/log2pcap.1.html +share/swat/help/manpages.html +share/swat/help/mount.cifs.8.html +share/swat/help/net.8.html +share/swat/help/nmbd.8.html +share/swat/help/nmblookup.1.html +share/swat/help/ntlm_auth.1.html +share/swat/help/pam_winbind.8.html +share/swat/help/pdbedit.8.html +share/swat/help/profiles.1.html +share/swat/help/rpcclient.1.html +share/swat/help/samba.7.html +share/swat/help/smb.conf.5.html +share/swat/help/smbcacls.1.html +share/swat/help/smbclient.1.html +share/swat/help/smbcontrol.1.html +share/swat/help/smbcquotas.1.html +share/swat/help/smbd.8.html +share/swat/help/smbget.1.html +share/swat/help/smbgetrc.5.html +share/swat/help/smbmnt.8.html +share/swat/help/smbmount.8.html +share/swat/help/smbpasswd.5.html +share/swat/help/smbpasswd.8.html +share/swat/help/smbsh.1.html +share/swat/help/smbspool.8.html +share/swat/help/smbstatus.1.html +share/swat/help/smbtar.1.html +share/swat/help/smbtree.1.html +share/swat/help/smbumount.8.html +share/swat/help/swat.8.html +share/swat/help/tdbbackup.8.html +share/swat/help/tdbdump.8.html +share/swat/help/testparm.1.html +share/swat/help/testprns.1.html +share/swat/help/vfstest.1.html +share/swat/help/wbinfo.1.html +share/swat/help/welcome.html +share/swat/help/winbindd.8.html +share/swat/images/globals.gif +share/swat/images/home.gif +share/swat/images/passwd.gif +share/swat/images/printers.gif +share/swat/images/samba.gif +share/swat/images/shares.gif +share/swat/images/status.gif +share/swat/images/viewconfig.gif +share/swat/images/wizard.gif +share/swat/include/footer.html +share/swat/include/header.html +share/swat/lang/ja/help/welcome.html +share/swat/lang/tr/help/welcome.html +share/swat/lang/tr/images/globals.gif +share/swat/lang/tr/images/home.gif +share/swat/lang/tr/images/passwd.gif +share/swat/lang/tr/images/printers.gif +share/swat/lang/tr/images/samba.gif +share/swat/lang/tr/images/shares.gif +share/swat/lang/tr/images/status.gif +share/swat/lang/tr/images/viewconfig.gif +share/swat/using_samba/appa.html +share/swat/using_samba/appb.html +share/swat/using_samba/appc.html +share/swat/using_samba/appd.html +share/swat/using_samba/appe.html +share/swat/using_samba/appf.html +share/swat/using_samba/appg.html +share/swat/using_samba/ch00.html +share/swat/using_samba/ch01.html +share/swat/using_samba/ch02.html +share/swat/using_samba/ch03.html +share/swat/using_samba/ch04.html +share/swat/using_samba/ch05.html +share/swat/using_samba/ch06.html +share/swat/using_samba/ch07.html +share/swat/using_samba/ch08.html +share/swat/using_samba/ch09.html +share/swat/using_samba/ch10.html +share/swat/using_samba/ch11.html +share/swat/using_samba/ch12.html +share/swat/using_samba/figs/sam2_0101.gif +share/swat/using_samba/figs/sam2_0102.gif +share/swat/using_samba/figs/sam2_0103.gif +share/swat/using_samba/figs/sam2_0104.gif +share/swat/using_samba/figs/sam2_0105.gif +share/swat/using_samba/figs/sam2_0106.gif +share/swat/using_samba/figs/sam2_0107.gif +share/swat/using_samba/figs/sam2_0108.gif +share/swat/using_samba/figs/sam2_0109.gif +share/swat/using_samba/figs/sam2_0110.gif +share/swat/using_samba/figs/sam2_0111.gif +share/swat/using_samba/figs/sam2_0112.gif +share/swat/using_samba/figs/sam2_0113.gif +share/swat/using_samba/figs/sam2_0114.gif +share/swat/using_samba/figs/sam2_0201.gif +share/swat/using_samba/figs/sam2_0202.gif +share/swat/using_samba/figs/sam2_0203.gif +share/swat/using_samba/figs/sam2_0204.gif +share/swat/using_samba/figs/sam2_0301.gif +share/swat/using_samba/figs/sam2_0302.gif +share/swat/using_samba/figs/sam2_0303.gif +share/swat/using_samba/figs/sam2_0304.gif +share/swat/using_samba/figs/sam2_0305.gif +share/swat/using_samba/figs/sam2_0306.gif +share/swat/using_samba/figs/sam2_0307.gif +share/swat/using_samba/figs/sam2_0308.gif +share/swat/using_samba/figs/sam2_0309.gif +share/swat/using_samba/figs/sam2_0310.gif +share/swat/using_samba/figs/sam2_0311.gif +share/swat/using_samba/figs/sam2_0312.gif +share/swat/using_samba/figs/sam2_0313.gif +share/swat/using_samba/figs/sam2_0314.gif +share/swat/using_samba/figs/sam2_0315.gif +share/swat/using_samba/figs/sam2_0316.gif +share/swat/using_samba/figs/sam2_0317.gif +share/swat/using_samba/figs/sam2_0318.gif +share/swat/using_samba/figs/sam2_0319.gif +share/swat/using_samba/figs/sam2_0320.gif +share/swat/using_samba/figs/sam2_0321.gif +share/swat/using_samba/figs/sam2_0322.gif +share/swat/using_samba/figs/sam2_0323.gif +share/swat/using_samba/figs/sam2_0324.gif +share/swat/using_samba/figs/sam2_0325.gif +share/swat/using_samba/figs/sam2_0326.gif +share/swat/using_samba/figs/sam2_0327.gif +share/swat/using_samba/figs/sam2_0328.gif +share/swat/using_samba/figs/sam2_0329.gif +share/swat/using_samba/figs/sam2_0330.gif +share/swat/using_samba/figs/sam2_0331.gif +share/swat/using_samba/figs/sam2_0332.gif +share/swat/using_samba/figs/sam2_0333.gif +share/swat/using_samba/figs/sam2_0334.gif +share/swat/using_samba/figs/sam2_0335.gif +share/swat/using_samba/figs/sam2_0336.gif +share/swat/using_samba/figs/sam2_0337.gif +share/swat/using_samba/figs/sam2_0338.gif +share/swat/using_samba/figs/sam2_0339.gif +share/swat/using_samba/figs/sam2_0340.gif +share/swat/using_samba/figs/sam2_0341.gif +share/swat/using_samba/figs/sam2_0342.gif +share/swat/using_samba/figs/sam2_0343.gif +share/swat/using_samba/figs/sam2_0344.gif +share/swat/using_samba/figs/sam2_0345.gif +share/swat/using_samba/figs/sam2_0346.gif +share/swat/using_samba/figs/sam2_0347.gif +share/swat/using_samba/figs/sam2_0348.gif +share/swat/using_samba/figs/sam2_0349.gif +share/swat/using_samba/figs/sam2_0350.gif +share/swat/using_samba/figs/sam2_0351.gif +share/swat/using_samba/figs/sam2_0352.gif +share/swat/using_samba/figs/sam2_0353.gif +share/swat/using_samba/figs/sam2_0354.gif +share/swat/using_samba/figs/sam2_0355.gif +share/swat/using_samba/figs/sam2_0356.gif +share/swat/using_samba/figs/sam2_0357.gif +share/swat/using_samba/figs/sam2_0358.gif +share/swat/using_samba/figs/sam2_0359.gif +share/swat/using_samba/figs/sam2_0360.gif +share/swat/using_samba/figs/sam2_0361.gif +share/swat/using_samba/figs/sam2_0401.gif +share/swat/using_samba/figs/sam2_0402.gif +share/swat/using_samba/figs/sam2_0403.gif +share/swat/using_samba/figs/sam2_0404.gif +share/swat/using_samba/figs/sam2_0405.gif +share/swat/using_samba/figs/sam2_0406.gif +share/swat/using_samba/figs/sam2_0407.gif +share/swat/using_samba/figs/sam2_0408.gif +share/swat/using_samba/figs/sam2_0409.gif +share/swat/using_samba/figs/sam2_0410.gif +share/swat/using_samba/figs/sam2_0411.gif +share/swat/using_samba/figs/sam2_0412.gif +share/swat/using_samba/figs/sam2_0413.gif +share/swat/using_samba/figs/sam2_0414.gif +share/swat/using_samba/figs/sam2_0415.gif +share/swat/using_samba/figs/sam2_0416.gif +share/swat/using_samba/figs/sam2_0417.gif +share/swat/using_samba/figs/sam2_0501.gif +share/swat/using_samba/figs/sam2_0502.gif +share/swat/using_samba/figs/sam2_0503.gif +share/swat/using_samba/figs/sam2_0504.gif +share/swat/using_samba/figs/sam2_0505.gif +share/swat/using_samba/figs/sam2_0506.gif +share/swat/using_samba/figs/sam2_0507.gif +share/swat/using_samba/figs/sam2_0508.gif +share/swat/using_samba/figs/sam2_0601.gif +share/swat/using_samba/figs/sam2_0602.gif +share/swat/using_samba/figs/sam2_0603.gif +share/swat/using_samba/figs/sam2_0604.gif +share/swat/using_samba/figs/sam2_0605.gif +share/swat/using_samba/figs/sam2_0701.gif +share/swat/using_samba/figs/sam2_0801.gif +share/swat/using_samba/figs/sam2_0802.gif +share/swat/using_samba/figs/sam2_0803.gif +share/swat/using_samba/figs/sam2_0804.gif +share/swat/using_samba/figs/sam2_0805.gif +share/swat/using_samba/figs/sam2_0806.gif +share/swat/using_samba/figs/sam2_0807.gif +share/swat/using_samba/figs/sam2_0808.gif +share/swat/using_samba/figs/sam2_0809.gif +share/swat/using_samba/figs/sam2_0810.gif +share/swat/using_samba/figs/sam2_0811.gif +share/swat/using_samba/figs/sam2_0901.gif +share/swat/using_samba/figs/sam2_0902.gif +share/swat/using_samba/figs/sam2_0903.gif +share/swat/using_samba/figs/sam2_1001.gif +share/swat/using_samba/figs/sam2_1002.gif +share/swat/using_samba/figs/sam2_1003.gif +share/swat/using_samba/figs/sam2_1004.gif +share/swat/using_samba/figs/sam2_1005.gif +share/swat/using_samba/figs/sam2_1006.gif +share/swat/using_samba/figs/sam2_1101.gif +share/swat/using_samba/figs/sam2_1102.gif +share/swat/using_samba/figs/sam2_af01.gif +share/swat/using_samba/figs/sam2_af02.gif +share/swat/using_samba/figs/sam2_af03.gif +share/swat/using_samba/figs/sam2_af04.gif +share/swat/using_samba/figs/sam2_af05.gif +share/swat/using_samba/figs/sam2_af06.gif +share/swat/using_samba/figs/sam2_af07.gif +share/swat/using_samba/inx.html +share/swat/using_samba/samba2_s.gif +share/swat/using_samba/samba2_xs.gif +share/swat/using_samba/toc.html +@dirrm share/swat/using_samba/figs +@dirrm share/swat/using_samba +@dirrm share/swat/lang/tr/images +@dirrm share/swat/lang/tr/help +@dirrm share/swat/lang/tr +@dirrm share/swat/lang/ja/help +@dirrm share/swat/lang/ja +@dirrm share/swat/lang +@dirrm share/swat/include +@dirrm share/swat/images +@dirrm share/swat/help/Samba-HOWTO-Collection/images +@dirrm share/swat/help/Samba-HOWTO-Collection +@dirrm share/swat/help/Samba-Guide/images +@dirrm share/swat/help/Samba-Guide +@dirrm share/swat/help/Samba-Developers-Guide +@dirrm share/swat/help +@dirrm share/swat +@dirrm share/examples/samba/wins_hook +@dirrm share/examples/samba/validchars +@dirrm share/examples/samba/tridge +@dirrm share/examples/samba/svr4-startup +@dirrm share/examples/samba/scripts +@dirrm share/examples/samba/printing +@dirrm share/examples/samba/printer-accounting +@dirrm share/examples/samba/pdb/mysql +@dirrm share/examples/samba/pdb +@dirrm share/examples/samba/ntlogon +@dirrm share/examples/samba/nss +@dirrm share/examples/samba/misc +@dirrm share/examples/samba/libsmbclient +@dirrm share/examples/samba/genlogon +@dirrm share/examples/samba/dce-dfs +@dirrm share/examples/samba/autofs +@dirrm share/examples/samba/auth/crackcheck +@dirrm share/examples/samba/auth +@dirrm share/examples/samba/VFS +@dirrm share/examples/samba/LDAP/smbldap-tools/mkntpwd +@dirrm share/examples/samba/LDAP/smbldap-tools/cgi +@dirrm share/examples/samba/LDAP/smbldap-tools +@dirrm share/examples/samba/LDAP +@dirrm share/examples/samba +@dirrm share/doc/samba +@dirrm lib/samba/vfs +@dirrm lib/samba/charset +@dirrm lib/samba +@extraunexec rm -rf ${CONFDIR} ${SAMBA_SPOOL} diff net/samba.orig/devel/pkg/SECURITY net/samba/devel/pkg/SECURITY --- net/samba.orig/devel/pkg/SECURITY Wed Dec 31 16:00:00 1969 +++ net/samba/devel/pkg/SECURITY Fri May 17 16:36:10 2002 @@ -0,0 +1 @@ +setreuid() and setregid() used by lib/util_sec.c.