Browse Source

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

stable/0.6
Christian Wiese 12 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" var_append extraconfopt ' ' "--with-fhs"
fi fi
var_append extraconfopt " " "--with-automount --with-syslog \ # location of configuration files
--with-acl-support --with-libsmbclient --with-quotas \ var_append extraconfopt ' ' "--with-configdir=$sysconfdir"
--with-configdir=$sysconfdir \
--with-privatedir=$sysconfdir/private \ # location for smbpasswd, secrets.tdb, and related files for authentication
--with-codepagedir=$sysconfdir/codepages \ var_append extraconfopt ' ' "--with-privatedir=$sysconfdir/private"
--with-piddir=$localstatedir/run/$pkg \
--with-swatdir=$datadir/swat" # 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 # enable nis+ support
var_append extraconfopt ' ' "--with-nisplus-home" var_append extraconfopt ' ' "--with-nisplus-home"

Loading…
Cancel
Save