diff options
Diffstat (limited to '')
-rw-r--r-- | net/samba3/Makefile | 167 | ||||
-rw-r--r-- | net/samba3/distinfo | 1 | ||||
-rw-r--r-- | net/samba3/files/README.FreeBSD | 21 | ||||
-rw-r--r-- | net/samba3/files/patch-aj | 15 | ||||
-rw-r--r-- | net/samba3/files/patch-installman.sh | 11 | ||||
-rw-r--r-- | net/samba3/files/samba.sh.sample | 22 | ||||
-rw-r--r-- | net/samba3/files/smb.conf.default | 256 | ||||
-rw-r--r-- | net/samba3/pkg-descr | 12 | ||||
-rw-r--r-- | net/samba3/pkg-plist | 612 |
9 files changed, 0 insertions, 1117 deletions
diff --git a/net/samba3/Makefile b/net/samba3/Makefile deleted file mode 100644 index 5c542d733936..000000000000 --- a/net/samba3/Makefile +++ /dev/null @@ -1,167 +0,0 @@ -# New ports collection makefile for: samba -# Date created: 11th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= samba -PORTVERSION= 3.0.0 -PORTEPOCH= 1 -CATEGORIES= net -MASTER_SITES= http://us3.samba.org/samba/ftp/%SUBDIR%/ -MASTER_SITE_SUBDIR= . rc -#DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/} - -MAINTAINER= dwcjr@FreeBSD.org -COMMENT= A free SMB and CIFS client and server for UNIX - -CONFLICTS= ja-samba-2.* samba-3.* samba-libsmbclient-3.* sharity-light-1.* - -USE_BZIP2="YES" - -.if !defined(WITHOUT_CUPS) -WITH_CUPS= yes -.endif - -.if defined(WITH_CUPS) -LIB_DEPENDS= cups.2:${PORTSDIR}/print/cups-base -CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ - LDFLAGS=-L${LOCALBASE}/lib -.endif - -# directories -VARDIR= /var -SAMBA_SPOOL= ${VARDIR}/spool/samba -SAMBA_LOGDIR= ${VARDIR}/log -SAMBA_PRIVATE= ${PREFIX}/private -SAMBA_CONFDIR= ${PREFIX}/etc -# sample files -STARTUP_SCRIPT= ${PREFIX}/etc/rc.d/samba.sh.sample -SAMPLE_CONFIG= ${SAMBA_CONFDIR}/smb.conf.default -DOCSDIR= ${PREFIX}/share/doc/samba - -NO_LATEST_LINK= yes -USE_AUTOCONF= yes -WANT_AUTOCONF_VER= 253 -CONFIGURE_ARGS= --libdir=${SAMBA_CONFDIR} \ - --localstatedir=${VARDIR} --with-swatdir=${PREFIX}/share/swat \ - --with-sambabook=${PREFIX}/share/swat/using_samba \ - --with-lockdir=${VARDIR}/lock --with-privatedir=${SAMBA_PRIVATE} \ - --exec-prefix=${PREFIX} --with-pam --without-manpages-langs \ - --with-piddir=${VARDIR}/run --with-logfilebase=${VARDIR}/log - -.include <bsd.port.pre.mk> - -.if defined(WITH_QUOTAS) -CONFIGURE_ARGS+= --with-quotas -.endif - -.if defined(WITH_UTMP) -CONFIGURE_ARGS+= --with-utmp -.endif - -.if defined(WITH_MSDFS) -CONFIGURE_ARGS+= --with-msdfs -.endif - -.if defined(WITH_WINBIND) -CONFIGURE_ARGS+= --with-winbind -.endif - -.if defined(WITH_WINBIND_AUTH_CHALLENGE) -CONFIGURE_ARGS+= --with-winbind-auth-challenge -.endif - -.if defined(KRB5_HOME) && exists(${KRB5_HOME}) -CONFIGURE_ARGS+= --with-krb5=${KRB5_HOME} -.else -CONFIGURE_ARGS+= --with-krb5=no -.endif - -.if defined(WITH_ACL_SUPPORT) -.if ${OSVERSION} < 500018 -BROKEN= "Requires a recent FreeBSD 5.0-CURRENT" -.else -CONFIGURE_ARGS+= --with-acl-support -.endif -.endif - -.if defined(WITH_LIBICONV) -LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv -CONFIGURE_ARGS+= --with-libiconv -.endif - -WRKSRC= ${WRKDIR}/${DISTNAME}/source - -MAN1= findsmb.1 nmblookup.1 log2pcap.1 \ - rpcclient.1 smbcacls.1 smbclient.1 smbcontrol.1 smbsh.1 \ - smbstatus.1 smbtar.1 testparm.1 testprns.1 wbinfo.1 vfstest.1 \ - editreg.1 ntlm_auth.1 profiles.1 smbcquotas.1 smbtree.1 -MAN5= lmhosts.5 smb.conf.5 smbpasswd.5 -MAN7= samba.7 Samba.7 -MAN8= nmbd.8 smbd.8 smbmnt.8 smbmount.8 net.8 pdbedit.8 mount.cifs.8 \ - smbpasswd.8 smbspool.8 smbumount.8 swat.8 winbindd.8 tdbbackup.8 - -post-install: - ${MKDIR} ${PREFIX}/share/examples/samba - ${CP} -rp ${WRKDIR}/${DISTNAME}/examples/* ${PREFIX}/share/examples/samba - @if [ ! -f ${STARTUP_SCRIPT} ]; then \ - ${ECHO} "Installing ${STARTUP_SCRIPT} startup file." ; \ - ${INSTALL_SCRIPT} ${FILESDIR}/samba.sh.sample \ - ${STARTUP_SCRIPT} ; \ - fi - @test -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && ${CHMOD} 1777 ${SAMBA_SPOOL} - @if [ ! -f ${SAMPLE_CONFIG} ]; then \ - ${SED} -e 's!%%SAMBA_SPOOL%%!${SAMBA_SPOOL}!' \ - -e 's!%%SAMBA_LOGDIR%%!${SAMBA_LOGDIR}!' \ - -e 's!%%SAMBA_CONFDIR%%!${SAMBA_CONFDIR}!' \ - ${FILESDIR}/smb.conf.default \ - > ${SAMPLE_CONFIG} ; \ - fi - ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/source/script/mksmbpasswd.sh ${PREFIX}/bin/make_smbpasswd - if [ ! -d ${SAMBA_PRIVATE} ] ; then \ - ${MKDIR} ${SAMBA_PRIVATE} ; \ - ${CHOWN} root:wheel ${SAMBA_PRIVATE} ; \ - fi - ${CHMOD} 700 ${SAMBA_PRIVATE} - if [ ! -f ${SAMBA_PRIVATE}/smbpasswd ] ; then \ - ${CAT} /etc/passwd | ${GREP} -v "^#" | ${PREFIX}/bin/make_smbpasswd > ${SAMBA_PRIVATE}/smbpasswd ; \ - ${CHMOD} 600 ${SAMBA_PRIVATE}/smbpasswd ; \ - fi - ${CHMOD} 500 ${SAMBA_PRIVATE} - ${CHOWN} root:wheel ${PREFIX}/bin/smbpasswd - ${CHMOD} 111 ${PREFIX}/bin/smbpasswd -.if defined(PACKAGE_BUILDING) - ${ECHO_CMD} "private/smbpasswd" >> ${TMPPLIST} - ${ECHO_CMD} "@dirrm private" >> ${TMPPLIST} -.else - ${ECHO_CMD} "@unexec ${ECHO_CMD} \"Warning: If you will *NOT* use this package anymore, please remove %D/private/smbpasswd manually.\"" >> ${TMPPLIST} -.endif - -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${DOCSDIR} - for i in ${WRKDIR}/${DISTNAME}/README \ - ${WRKDIR}/${DISTNAME}/COPYING \ - ${WRKDIR}/${DISTNAME}/Manifest \ - ${WRKDIR}/${DISTNAME}/Read-Manifest-Now \ - ${WRKDIR}/${DISTNAME}/Roadmap \ - ${WRKDIR}/${DISTNAME}/WHATSNEW.txt \ - ${WRKDIR}/${DISTNAME}/docs/THANKS \ - ${WRKDIR}/${DISTNAME}/docs/history ; do \ - ${INSTALL_DATA} $$i ${DOCSDIR} ; \ - done - for i in faq htmldocs Registry ; do \ - ${MKDIR} ${DOCSDIR}/$$i ; \ - for j in ${WRKDIR}/${DISTNAME}/docs/$$i/* ; do \ - if [ $$j != ${WRKDIR}/${DISTNAME}/docs/htmldocs/using_samba ] ; then \ - if [ $$j != ${WRKDIR}/${DISTNAME}/docs/textdocs/outdated ] ; then \ - ${INSTALL_DATA} $$j ${DOCSDIR}/$$i ;\ - fi; \ - fi; \ - done \ - done -.endif - -.include <bsd.port.post.mk> diff --git a/net/samba3/distinfo b/net/samba3/distinfo deleted file mode 100644 index 525e7a4cd22d..000000000000 --- a/net/samba3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (samba-3.0.0.tar.bz2) = f54ba49f9a5ef6090272acf8db2e066d diff --git a/net/samba3/files/README.FreeBSD b/net/samba3/files/README.FreeBSD deleted file mode 100644 index 67cc86c58cb2..000000000000 --- a/net/samba3/files/README.FreeBSD +++ /dev/null @@ -1,21 +0,0 @@ -If you want to use samba ports, - -1. Copy /usr/local/etc/smb.conf.default to /usr/local/etc/smb.conf, and edit - it. -2. Copy /usr/local/etc/rc.d/samba.sh.sample to /usr/local/etc/rc.d/samba.sh -3. Type /usr/local/etc/rc.d/samba.sh or reboot. - -See document files in /usr/local/share/doc/samba and example config files in -/usr/local/share/examples/samba for details. - -FreeBSD Samba ports for localization and encrypt passwords support are no -longer provided because these supports have been integrated into the -original distribution since 1.9.18. If you're Western European or Japanese -Windows users, please set "client code page" parameter in smb.conf (1.9.18 -does not support Chinese Windows. If you want to use Chinese samba, please -use chinese/samba port). See smb.conf.sample for details. If you want to -use NT4+SP3 or Win95+updates clients, set "encrypt passwords" parameter to -yes and use smbpasswd [username] to use /usr/local/private/smbpasswd for -authentication. - -FreeBSD SAMBA ports maintainer: Tatsumi Hosokawa <hosokawa@jp.FreeBSD.org> diff --git a/net/samba3/files/patch-aj b/net/samba3/files/patch-aj deleted file mode 100644 index 8804493c38df..000000000000 --- a/net/samba3/files/patch-aj +++ /dev/null @@ -1,15 +0,0 @@ ---- include/local.h.orig Fri Jul 6 03:01:26 2001 -+++ include/local.h Tue Oct 16 17:20:36 2001 -@@ -176,10 +176,10 @@ - * Default passwd chat script. - */ - --#define DEFAULT_PASSWD_CHAT "*new*password* %n\\n *new*password* %n\\n *changed*" -+#define DEFAULT_PASSWD_CHAT "*\\n*ew\\spassword* %n\\n *ew\\spassword* %n\\n *updating\\sthe\\sdatabase...\\npasswd:\\sdone\\n" - - /* Minimum length of allowed password when changing UNIX password. */ --#define MINPASSWDLENGTH 5 -+#define MINPASSWDLENGTH 6 - - /* maximum ID number used for session control. This cannot be larger - than 62*62 for the current code */ diff --git a/net/samba3/files/patch-installman.sh b/net/samba3/files/patch-installman.sh deleted file mode 100644 index 5ec4061a559e..000000000000 --- a/net/samba3/files/patch-installman.sh +++ /dev/null @@ -1,11 +0,0 @@ ---- script/installman.sh.orig Wed Aug 21 09:33:36 2002 -+++ script/installman.sh Wed Aug 21 09:33:53 2002 -@@ -22,7 +22,7 @@ - echo Installing \"$lang\" man pages in $MANDIR/lang/$lang - fi - -- langdir=$MANDIR/$lang -+ langdir=$MANDIR - for d in $MANDIR $langdir $langdir/man1 $langdir/man5 $langdir/man7 $langdir/man8; do - if [ ! -d $d ]; then - mkdir $d diff --git a/net/samba3/files/samba.sh.sample b/net/samba3/files/samba.sh.sample deleted file mode 100644 index e6807ad6d145..000000000000 --- a/net/samba3/files/samba.sh.sample +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -smbspool=/var/spool/samba -pidfiledir=/var/run -smbd=/usr/local/sbin/smbd -nmbd=/usr/local/sbin/nmbd - -# start -if [ "x$1" = "x" -o "x$1" = "xstart" ]; then - if [ -f $smbd ]; then - if [ -d $smbspool ]; then - rm -f $smbspool/* - fi - echo -n ' Samba' - $smbd -D - $nmbd -D - fi - -# stop -elif [ "x$1" = "xstop" ]; then - kill `cat $pidfiledir/smbd.pid` - kill `cat $pidfiledir/nmbd.pid` -fi diff --git a/net/samba3/files/smb.conf.default b/net/samba3/files/smb.conf.default deleted file mode 100644 index 8046bf75398a..000000000000 --- a/net/samba3/files/smb.conf.default +++ /dev/null @@ -1,256 +0,0 @@ -# This is the main Samba configuration file. You should read the -# smb.conf(5) manual page in order to understand the options listed -# here. Samba has a huge number of configurable options (perhaps too -# many!) most of which are not shown in this example -# -# Any line which starts with a ; (semi-colon) or a # (hash) -# is a comment and is ignored. In this example we will use a # -# for commentry and a ; for parts of the config file that you -# may wish to enable -# -# NOTE: Whenever you modify this file you should run the command "testparm" -# to check that you have not many any basic syntactic errors. -# -#======================= Global Settings ===================================== -[global] - -# workgroup = NT-Domain-Name or Workgroup-Name, eg: REDHAT4 - workgroup = MYGROUP - -# server string is the equivalent of the NT Description field - server string = Samba Server - -# This option is important for security. It allows you to restrict -# connections to machines which are on your local network. The -# following example restricts access to two C class networks and -# the "loopback" interface. For more examples of the syntax see -# the smb.conf man page -; hosts allow = 192.168.1. 192.168.2. 127. - -# If you want to automatically load your printer list rather -# than setting them up individually then you'll need this - load printers = yes - -# you may wish to override the location of the printcap file -; printcap name = /etc/printcap - -# on SystemV system setting printcap name to lpstat should allow -# you to automatically obtain a printer list from the SystemV spool -# system -; printcap name = lpstat - -# It should not be necessary to specify the print system type unless -# it is non-standard. Currently supported print systems include: -# bsd, sysv, plp, lprng, aix, hpux, qnx -; printing = bsd - -# Uncomment this if you want a guest account, you must add this to /etc/passwd -# otherwise the user "nobody" is used -; guest account = pcguest - -# this tells Samba to use a separate log file for each machine -# that connects - log file = %%SAMBA_LOGDIR%%/log.%m - -# Put a capping on the size of the log files (in Kb). - max log size = 50 - -# Security mode. Most people will want user level security. See -# security_level.txt for details. - security = user -# Use password server option only with security = server -; password server = <NT-Server-Name> - -# You may wish to use password encryption. Please read -# ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation. -# Do not enable this option unless you have read those documents -; encrypt passwords = yes - -# Using the following line enables you to customise your configuration -# on a per machine basis. The %m gets replaced with the netbios name -# of the machine that is connecting -; include = %%SAMBA_CONFDIR%%/smb.conf.%m - -# Most people will find that this option gives better performance. -# See speed.txt and the manual pages for details - socket options = TCP_NODELAY - -# Configure Samba to use multiple interfaces -# If you have multiple network interfaces then you must list them -# here. See the man page for details. -; interfaces = 192.168.12.2/24 192.168.13.2/24 - -# Browser Control Options: -# set local master to no if you don't want Samba to become a master -# browser on your network. Otherwise the normal election rules apply -; local master = no - -# OS Level determines the precedence of this server in master browser -# elections. The default value should be reasonable -; os level = 33 - -# Domain Master specifies Samba to be the Domain Master Browser. This -# allows Samba to collate browse lists between subnets. Don't use this -# if you already have a Windows NT domain controller doing this job -; domain master = yes - -# Preferred Master causes Samba to force a local browser election on startup -# and gives it a slightly higher chance of winning the election -; preferred master = yes - -# Use only if you have an NT server on your network that has been -# configured at install time to be a primary domain controller. -; domain controller = <NT-Domain-Controller-SMBName> - -# Enable this if you want Samba to be a domain logon server for -# Windows95 workstations. -; domain logons = yes - -# if you enable domain logons then you may want a per-machine or -# per user logon script -# run a specific logon batch file per workstation (machine) -; logon script = %m.bat -# run a specific logon batch file per username -; logon script = %U.bat - -# Where to store roving profiles (only for Win95 and WinNT) -# %L substitutes for this servers netbios name, %U is username -# You must uncomment the [Profiles] share below -; logon path = \\%L\Profiles\%U - -# Windows Internet Name Serving Support Section: -# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server -; wins support = yes - -# WINS Server - Tells the NMBD components of Samba to be a WINS Client -# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both -; wins server = w.x.y.z - -# WINS Proxy - Tells Samba to answer name resolution queries on -# behalf of a non WINS capable client, for this to work there must be -# at least one WINS Server on the network. The default is NO. -; wins proxy = yes - -# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names -# via DNS nslookups. The built-in default for versions 1.9.17 is yes, -# this has been changed in version 1.9.18 to no. - dns proxy = no - -# charset settings -; display charset = ASCII -; unix charset = ASCII -; dos charset = ASCII - -# -#============================ Share Definitions ============================== -[homes] - comment = Home Directories - browseable = no - writeable = yes - -# Un-comment the following and create the netlogon directory for Domain Logons -; [netlogon] -; comment = Network Logon Service -; path = /usr/local/samba/lib/netlogon -; guest ok = yes -; writeable = no -; share modes = no - - -# Un-comment the following to provide a specific roving profile share -# the default is to use the user's home directory -;[Profiles] -; path = /usr/local/samba/profiles -; browseable = no -; guest ok = yes - - -# NOTE: If you have a BSD-style print system there is no need to -# specifically define each individual printer -[printers] - comment = All Printers - path = %%SAMBA_SPOOL%% - browseable = no -# Set public = yes to allow user 'guest account' to print - guest ok = no - writeable = no - printable = yes - -# This one is useful for people to share files -;[tmp] -; comment = Temporary file space -; path = /tmp -; read only = no -; public = yes - -# A publicly accessible directory, but read only, except for people in -# the "staff" group -;[public] -; comment = Public Stuff -; path = /home/samba -; public = yes -; writeable = yes -; printable = no -; write list = @staff - -# Other examples. -# -# A private printer, usable only by fred. Spool data will be placed in fred's -# home directory. Note that fred must have write access to the spool directory, -# wherever it is. -;[fredsprn] -; comment = Fred's Printer -; valid users = fred -; path = /homes/fred -; printer = freds_printer -; public = no -; writeable = no -; printable = yes - -# A private directory, usable only by fred. Note that fred requires write -# access to the directory. -;[fredsdir] -; comment = Fred's Service -; path = /usr/somewhere/private -; valid users = fred -; public = no -; writeable = yes -; printable = no - -# a service which has a different directory for each machine that connects -# this allows you to tailor configurations to incoming machines. You could -# also use the %U option to tailor it by user name. -# The %m gets replaced with the machine name that is connecting. -;[pchome] -; comment = PC Directories -; path = /usr/pc/%m -; public = no -; writeable = yes - -# A publicly accessible directory, read/write to all users. Note that all files -# created in the directory by users will be owned by the default user, so -# any user with access can delete any other user's files. Obviously this -# directory must be writeable by the default user. Another user could of course -# be specified, in which case all files would be owned by that user instead. -;[public] -; path = /usr/somewhere/else/public -; public = yes -; only guest = yes -; writeable = yes -; printable = no - -# The following two entries demonstrate how to share a directory so that two -# users can place files there that will be owned by the specific users. In this -# setup, the directory should be writeable by both users and should have the -# sticky bit set on it to prevent abuse. Obviously this could be extended to -# as many users as required. -;[myshare] -; comment = Mary's and Fred's stuff -; path = /usr/somewhere/shared -; valid users = mary fred -; public = no -; writeable = yes -; printable = no -; create mask = 0765 - - diff --git a/net/samba3/pkg-descr b/net/samba3/pkg-descr deleted file mode 100644 index b49d3d9ac57c..000000000000 --- a/net/samba3/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -The Samba suite is a set of programs which run under the FreeBSD -operating system. These programs deliver most of the important -functionality of a Microsoft Lan Manager server. That is, they support -remote access to FreeBSD filespace and FreeBSD printers from Lan Manager -compatible clients. In practical terms, this means that such clients -can connect to and use FreeBSD filespace as if it was a local disk drive, -or FreeBSD 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. - -WWW: http://www.samba.org/ diff --git a/net/samba3/pkg-plist b/net/samba3/pkg-plist deleted file mode 100644 index 2346307dcb40..000000000000 --- a/net/samba3/pkg-plist +++ /dev/null @@ -1,612 +0,0 @@ -bin/findsmb -bin/make_smbpasswd -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/testparm -bin/testprns -bin/wbinfo -etc/charset/CP437.so -etc/charset/CP850.so -etc/de.msg -etc/en.msg -etc/fr.msg -etc/it.msg -etc/ja.msg -etc/lowcase.dat -etc/pl.msg -etc/rc.d/samba.sh.sample -etc/smb.conf.default -etc/tr.msg -etc/upcase.dat -etc/valid.dat -etc/vfs/audit.so -etc/vfs/cap.so -etc/vfs/default_quota.so -etc/vfs/extd_audit.so -etc/vfs/fake_perms.so -etc/vfs/netatalk.so -etc/vfs/readonly.so -etc/vfs/recycle.so -include/libsmbclient.h -lib/libsmbclient.so -sbin/nmbd -sbin/smbd -sbin/swat -sbin/winbindd -%%PORTDOCS%%share/doc/samba/faq/FAQ-ClientApp.html -%%PORTDOCS%%share/doc/samba/faq/FAQ-Install.html -%%PORTDOCS%%share/doc/samba/faq/FAQ-errors.html -%%PORTDOCS%%share/doc/samba/faq/FAQ-features.html -%%PORTDOCS%%share/doc/samba/faq/FAQ-general.html -%%PORTDOCS%%share/doc/samba/faq/samba-faq.html -%%PORTDOCS%%share/doc/samba/COPYING -%%PORTDOCS%%share/doc/samba/Manifest -%%PORTDOCS%%share/doc/samba/README.FreeBSD -%%PORTDOCS%%share/doc/samba/README -%%PORTDOCS%%share/doc/samba/Read-Manifest-Now -%%PORTDOCS%%share/doc/samba/Registry/NT4-Locking.reg -%%PORTDOCS%%share/doc/samba/Registry/NT4_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/Win2000_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/Win95_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/Win98_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/Win9X-CacheHandling.reg -%%PORTDOCS%%share/doc/samba/Registry/WinME_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/WinXP_SignOrSeal.reg -%%PORTDOCS%%share/doc/samba/Registry/Win-NT-2K-XP-DeleteRoamingProfile.reg -%%PORTDOCS%%share/doc/samba/Registry/WinXP_PlainPassword.reg -%%PORTDOCS%%share/doc/samba/Registry/WindowsTerminalServer.reg -%%PORTDOCS%%share/doc/samba/Roadmap -%%PORTDOCS%%share/doc/samba/THANKS -%%PORTDOCS%%share/doc/samba/WHATSNEW.txt -%%PORTDOCS%%share/doc/samba/history -%%PORTDOCS%%share/doc/samba/htmldocs/Samba-Developers-Guide.html -%%PORTDOCS%%share/doc/samba/htmldocs/AccessControls.html -%%PORTDOCS%%share/doc/samba/htmldocs/AdvancedNetworkManagement.html -%%PORTDOCS%%share/doc/samba/htmldocs/Appendixes.html -%%PORTDOCS%%share/doc/samba/htmldocs/Backup.html -%%PORTDOCS%%share/doc/samba/htmldocs/CUPS-printing.html -%%PORTDOCS%%share/doc/samba/htmldocs/ClientConfig.html -%%PORTDOCS%%share/doc/samba/htmldocs/DNSDHCP.html -%%PORTDOCS%%share/doc/samba/htmldocs/FastStart.html -%%PORTDOCS%%share/doc/samba/htmldocs/Further-Resources.html -%%PORTDOCS%%share/doc/samba/htmldocs/InterdomainTrusts.html -%%PORTDOCS%%share/doc/samba/htmldocs/IntroSMB.html -%%PORTDOCS%%share/doc/samba/htmldocs/NT4Migration.html -%%PORTDOCS%%share/doc/samba/htmldocs/NetworkBrowsing.html -%%PORTDOCS%%share/doc/samba/htmldocs/Other-Clients.html -%%PORTDOCS%%share/doc/samba/htmldocs/PolicyMgmt.html -%%PORTDOCS%%share/doc/samba/htmldocs/Portability.html -%%PORTDOCS%%share/doc/samba/htmldocs/ProfileMgmt.html -%%PORTDOCS%%share/doc/samba/htmldocs/SWAT.html -%%PORTDOCS%%share/doc/samba/htmldocs/Samba-HOWTO-Collection.html -%%PORTDOCS%%share/doc/samba/htmldocs/SambaHA.html -%%PORTDOCS%%share/doc/samba/htmldocs/ServerType.html -%%PORTDOCS%%share/doc/samba/htmldocs/StandAloneServer.html -%%PORTDOCS%%share/doc/samba/htmldocs/bugreport.html -%%PORTDOCS%%share/doc/samba/htmldocs/compiling.html -%%PORTDOCS%%share/doc/samba/htmldocs/diagnosis.html -%%PORTDOCS%%share/doc/samba/htmldocs/domain-member.html -%%PORTDOCS%%share/doc/samba/htmldocs/editreg.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/findsmb.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/groupmapping.html -%%PORTDOCS%%share/doc/samba/htmldocs/index.html -%%PORTDOCS%%share/doc/samba/htmldocs/ix01.html -%%PORTDOCS%%share/doc/samba/htmldocs/install.html -%%PORTDOCS%%share/doc/samba/htmldocs/integrate-ms-networks.html -%%PORTDOCS%%share/doc/samba/htmldocs/introduction.html -%%PORTDOCS%%share/doc/samba/htmldocs/locking.html -%%PORTDOCS%%share/doc/samba/htmldocs/log2pcap.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/lmhosts.5.html -%%PORTDOCS%%share/doc/samba/htmldocs/migration.html -%%PORTDOCS%%share/doc/samba/htmldocs/mount.cifs.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/msdfs.html -%%PORTDOCS%%share/doc/samba/htmldocs/net.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/nmbd.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/nmblookup.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/ntlm_auth.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/optional.html -%%PORTDOCS%%share/doc/samba/htmldocs/pam.html -%%PORTDOCS%%share/doc/samba/htmldocs/passdb.html -%%PORTDOCS%%share/doc/samba/htmldocs/pdbedit.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/pr01.html -%%PORTDOCS%%share/doc/samba/htmldocs/pr02.html -%%PORTDOCS%%share/doc/samba/htmldocs/printing.html -%%PORTDOCS%%share/doc/samba/htmldocs/problems.html -%%PORTDOCS%%share/doc/samba/htmldocs/profiles.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/rpcclient.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba.7.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba-bdc.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba-pdc.html -%%PORTDOCS%%share/doc/samba/htmldocs/samba.css -%%PORTDOCS%%share/doc/samba/htmldocs/securing-samba.html -%%PORTDOCS%%share/doc/samba/htmldocs/smb.conf.5.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbcacls.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbclient.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbcontrol.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbcquotas.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbd.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbmnt.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbmount.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbpasswd.5.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbpasswd.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbsh.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbspool.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbstatus.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbtar.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbtree.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/smbumount.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/speed.html -%%PORTDOCS%%share/doc/samba/htmldocs/swat.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/tdbbackup.8.html -%%PORTDOCS%%share/doc/samba/htmldocs/testparm.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/testprns.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/troubleshooting.html -%%PORTDOCS%%share/doc/samba/htmldocs/type.html -%%PORTDOCS%%share/doc/samba/htmldocs/unicode.html -%%PORTDOCS%%share/doc/samba/htmldocs/upgrading-to-3.0.html -%%PORTDOCS%%share/doc/samba/htmldocs/VFS.html -%%PORTDOCS%%share/doc/samba/htmldocs/vfstest.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/wbinfo.1.html -%%PORTDOCS%%share/doc/samba/htmldocs/winbind.html -%%PORTDOCS%%share/doc/samba/htmldocs/winbindd.8.html -share/examples/samba/README -share/examples/samba/VFS/.cvsignore -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/LDAP/smbldap-tools/mkntpwd/md4.c -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/Makefile -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/cgi/ldappass.cgi -share/examples/samba/LDAP/smbldap-tools/cgi/README -share/examples/samba/LDAP/smbldap-tools/ChangeLog -share/examples/samba/LDAP/smbldap-tools/COPYING -share/examples/samba/LDAP/smbldap-tools/Makefile -share/examples/samba/LDAP/smbldap-tools/FILES -share/examples/samba/LDAP/smbldap-tools/INSTALL -share/examples/samba/LDAP/smbldap-tools/INFRASTRUCTURE -share/examples/samba/LDAP/smbldap-tools/README -share/examples/samba/LDAP/smbldap-tools/TODO -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/CONTRIBUTORS -share/examples/samba/LDAP/smbldap-tools/smbldap_tools.pm -share/examples/samba/LDAP/README -share/examples/samba/LDAP/convertSambaAccount -share/examples/samba/LDAP/ldapsync.pl -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/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/appliance/Makefile -share/examples/samba/appliance/README -share/examples/samba/appliance/appliance.spec -share/examples/samba/appliance/build.sh -share/examples/samba/appliance/smb.conf-appliance -share/examples/samba/auth/Makefile -share/examples/samba/auth/auth_skel.c -share/examples/samba/autofs/auto.a -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/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/ntlogon/README -share/examples/samba/ntlogon/ntlogon.conf -share/examples/samba/ntlogon/ntlogon.py -share/examples/samba/pdb/mysql/mysql.dump -share/examples/samba/pdb/mysql/smb.conf -share/examples/samba/pdb/Makefile -share/examples/samba/pdb/README -share/examples/samba/pdb/sambapdb.dtd -share/examples/samba/pdb/pdb_test.c -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/prtpub.c -share/examples/samba/printing/readme.prtpub -share/examples/samba/printing/smbprint -share/examples/samba/printing/smbprint-new.sh -share/examples/samba/printing/smbprint.sysv -share/examples/samba/simple/README -share/examples/samba/simple/smb.conf -share/examples/samba/smb.conf.default -share/examples/samba/svr4-startup/README -share/examples/samba/svr4-startup/samba.server -share/examples/samba/thoralf/smb.conf -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.html -share/swat/help/AccessControls.html -share/swat/help/AdvancedNetworkManagement.html -share/swat/help/Appendixes.html -share/swat/help/Backup.html -share/swat/help/CUPS-printing.html -share/swat/help/ClientConfig.html -share/swat/help/DNSDHCP.html -share/swat/help/FastStart.html -share/swat/help/Further-Resources.html -share/swat/help/InterdomainTrusts.html -share/swat/help/IntroSMB.html -share/swat/help/NT4Migration.html -share/swat/help/NetworkBrowsing.html -share/swat/help/Other-Clients.html -share/swat/help/PolicyMgmt.html -share/swat/help/Portability.html -share/swat/help/ProfileMgmt.html -share/swat/help/SWAT.html -share/swat/help/Samba-HOWTO-Collection.html -share/swat/help/SambaHA.html -share/swat/help/ServerType.html -share/swat/help/StandAloneServer.html -share/swat/help/VFS.html -share/swat/help/bugreport.html -share/swat/help/compiling.html -share/swat/help/diagnosis.html -share/swat/help/domain-member.html -share/swat/help/editreg.1.html -share/swat/help/findsmb.1.html -share/swat/help/groupmapping.html -share/swat/help/index.html -share/swat/help/install.html -share/swat/help/integrate-ms-networks.html -share/swat/help/introduction.html -share/swat/help/ix01.html -share/swat/help/lmhosts.5.html -share/swat/help/locking.html -share/swat/help/log2pcap.1.html -share/swat/help/msdfs.html -share/swat/help/migration.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/optional.html -share/swat/help/pam.html -share/swat/help/passdb.html -share/swat/help/pdbedit.8.html -share/swat/help/printing.html -share/swat/help/pr01.html -share/swat/help/pr02.html -share/swat/help/problems.html -share/swat/help/profiles.1.html -share/swat/help/rpcclient.1.html -share/swat/help/samba.7.html -share/swat/help/samba-bdc.html -share/swat/help/samba-pdc.html -share/swat/help/securing-samba.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/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/speed.html -share/swat/help/swat.8.html -share/swat/help/tdbbackup.8.html -share/swat/help/testparm.1.html -share/swat/help/testprns.1.html -share/swat/help/troubleshooting.html -share/swat/help/type.html -share/swat/help/unicode.html -share/swat/help/upgrading-to-3.0.html -share/swat/help/vfstest.1.html -share/swat/help/wbinfo.1.html -share/swat/help/welcome.html -share/swat/help/winbind.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/ja/images/globals.gif -share/swat/lang/ja/images/home.gif -share/swat/lang/ja/images/passwd.gif -share/swat/lang/ja/images/printers.gif -share/swat/lang/ja/images/samba.gif -share/swat/lang/ja/images/shares.gif -share/swat/lang/ja/images/status.gif -share/swat/lang/ja/images/viewconfig.gif -share/swat/lang/ja/include/footer.html -share/swat/lang/ja/include/header.html -share/swat/lang/ja/include/header.nocss.html -share/swat/lang/ja/include/header_css.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/lang/tr/include/header.html -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/toc.html -share/swat/using_samba/samba2_s.gif -share/swat/using_samba/samba2_xs.gif -@dirrm etc/auth -@dirrm etc/charset -@dirrm etc/idmap -@dirrm etc/pdb -@dirrm etc/rpc -@dirrm etc/vfs -@dirrm share/swat/using_samba/figs -@dirrm share/swat/using_samba -@dirrm share/swat/include -@dirrm share/swat/images -@dirrm share/swat/help -@dirrm share/swat/lang/ja/include -@dirrm share/swat/lang/ja/images -@dirrm share/swat/lang/ja/help -@dirrm share/swat/lang/ja -@dirrm share/swat/lang/tr/include -@dirrm share/swat/lang/tr/images -@dirrm share/swat/lang/tr/help -@dirrm share/swat/lang/tr -@dirrm share/swat/lang -@dirrm share/swat -@dirrm share/examples/samba/LDAP/smbldap-tools/cgi -@dirrm share/examples/samba/LDAP/smbldap-tools/mkntpwd -@dirrm share/examples/samba/LDAP/smbldap-tools -@dirrm share/examples/samba/LDAP -@dirrm share/examples/samba/validchars -@dirrm share/examples/samba/tridge -@dirrm share/examples/samba/thoralf -@dirrm share/examples/samba/svr4-startup -@dirrm share/examples/samba/simple -@dirrm share/examples/samba/printing -@dirrm share/examples/samba/pdb/mysql -@dirrm share/examples/samba/pdb -@dirrm share/examples/samba/printer-accounting -@dirrm share/examples/samba/ntlogon -@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 -@dirrm share/examples/samba/appliance -@dirrm share/examples/samba/VFS -@dirrm share/examples/samba/wins_hook -@dirrm share/examples/samba -%%PORTDOCS%%@dirrm share/doc/samba/Registry -%%PORTDOCS%%@dirrm share/doc/samba/htmldocs -%%PORTDOCS%%@dirrm share/doc/samba/faq -%%PORTDOCS%%@dirrm share/doc/samba |