Browse Source

samba: separated and documented the bunch of confopts that have been passed in one step before

stable/0.6
Christian Wiese 11 years ago
parent
commit
3c22d743c6
  1. 36
      network/samba/samba.conf

36
network/samba/samba.conf

@ -31,13 +31,35 @@ if pkginstalled -f fhs; then
var_append extraconfopt ' ' "--with-fhs"
fi
var_append extraconfopt " " "--with-automount --with-syslog \
--with-acl-support --with-libsmbclient --with-quotas \
--with-configdir=$sysconfdir \
--with-privatedir=$sysconfdir/private \
--with-codepagedir=$sysconfdir/codepages \
--with-piddir=$localstatedir/run/$pkg \
--with-swatdir=$datadir/swat"
# location of configuration files
var_append extraconfopt ' ' "--with-configdir=$sysconfdir"
# location for smbpasswd, secrets.tdb, and related files for authentication
var_append extraconfopt ' ' "--with-privatedir=$sysconfdir/private"
# location of codepage files
var_append extraconfopt ' ' "--with-codepagedir=$sysconfdir/codepages"
# location for browse lists, WINS data, and PID files
var_append extraconfopt ' ' "--with-piddir=$localstatedir/run/$pkg"
# always build/install the smbclient library
var_append extraconfopt ' ' "--with-libsmbclient"
# Windows NT/2000/XP ACL support (needs POSIX ACL support on the host)
var_append extraconfopt ' ' "--with-acl-support"
# support for the automounter
var_append extraconfopt ' ' "--with-automount"
# syslog error logging support
var_append extraconfopt ' ' "--with-syslog"
# disk-quota support (classified as an experimental option)
var_append extraconfopt ' ' "--with-quotas"
# install location of the Samba Web Administration Tool (SWAT)
var_append extraconfopt ' ' "--with-swatdir=$datadir/swat"
# enable nis+ support
var_append extraconfopt ' ' "--with-nisplus-home"

Loading…
Cancel
Save