aboutsummaryrefslogtreecommitdiff
path: root/net/samba
diff options
context:
space:
mode:
authorDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2002-06-04 19:48:06 +0000
committerDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2002-06-04 19:48:06 +0000
commit8ce9b427091ab07148264a27b3effc6baf533fc4 (patch)
treec2e0cc06a68b284bbd5fb73658482137a9388c89 /net/samba
parent7c85d350aa9509cc53d6c0bd5ca1f1d146af8e7c (diff)
Add recycle and audit hooks to menu system
Submitted by: KLong@southlandInd.com
Notes
Notes: svn path=/head/; revision=60616
Diffstat (limited to 'net/samba')
-rw-r--r--net/samba/scripts/configure.samba10
1 files changed, 9 insertions, 1 deletions
diff --git a/net/samba/scripts/configure.samba b/net/samba/scripts/configure.samba
index d4e858551c82..8356b6a20e36 100644
--- a/net/samba/scripts/configure.samba
+++ b/net/samba/scripts/configure.samba
@@ -13,7 +13,7 @@ if [ "${BATCH}" ]; then
else
/usr/bin/dialog --title "configuration options" --clear \
--checklist "\n\
-Please select desired options:" -1 -1 9 \
+Please select desired options:" -1 -1 10 \
syslog "With syslog support" OFF \
ssl "With ssl support" OFF \
ldap "With LDAP2 support" OFF \
@@ -22,6 +22,8 @@ acl "With ACL support" OFF \
utmp "With UTMP support" OFF \
msdfs "With MSDFS support" OFF \
quota "With Quota support" OFF \
+recycle "With Recycle Bin" OFF \
+audit "With Audit" OFF \
2> $tempfile
retval=$?
@@ -70,6 +72,12 @@ while [ "$1" ]; do
\"quota\")
echo "WITH_QUOTA=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
;;
+ \"recycle\")
+ echo "WITH_RECYCLE=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
+ ;;
+ \"audit\")
+ echo "WITH_AUDIT=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
+ ;;
*)
echo "Invalid option: $1"
rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc