From: Ira Cooper Date: Tue, 26 Jul 2016 15:22:43 +0000 (-0400) Subject: source3/wscript: Add support for disabling vfs_cephfs X-Git-Tag: tevent-0.9.30~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38bb993657f8eb6c49899de0d741ed5186ca5022;p=thirdparty%2Fsamba.git source3/wscript: Add support for disabling vfs_cephfs --enable-cephfs and --disable-cephfs both work now. --enable-cephfs is the default to match previous versions of Samba. Signed-off-by: Ira Cooper Reviewed-by: Steve French Tested-by: Steve French --- diff --git a/source3/wscript b/source3/wscript index 497b6734de2..fe3f40fe53a 100644 --- a/source3/wscript +++ b/source3/wscript @@ -69,6 +69,7 @@ def set_options(opt): action="store", dest='libcephfs_dir', default=None) opt.SAMBA3_ADD_OPTION('glusterfs', with_name="enable", without_name="disable", default=True) + opt.SAMBA3_ADD_OPTION('cephfs', with_name="enable", without_name="disable", default=True) opt.add_option('--enable-vxfs', help=("enable support for VxFS (default=no)"),