diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-24 14:56:27 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-24 09:59:04 +0200 |
commit | abb2c7fef466f973a871661a3a96c75f8c3afc0d (patch) | |
tree | 5a91ddc8b7336e5f791dd7b7d06bb1b21819a11e /source4/setup | |
parent | 22cd4bcc9e8367c6871512f4c96033c7836e2c41 (diff) | |
download | samba-abb2c7fef466f973a871661a3a96c75f8c3afc0d.tar.gz samba-abb2c7fef466f973a871661a3a96c75f8c3afc0d.tar.bz2 samba-abb2c7fef466f973a871661a3a96c75f8c3afc0d.zip |
s4-provision: Make s3fs the default way to install a new Samba4 DC
With s3fs now well settled into master, we now throw the swtich and make
it the default.
There is still much to do, but we need to be using s3fs by default to
find out exactly what that is.
Andrew Bartlett
Diffstat (limited to 'source4/setup')
-rwxr-xr-x | source4/setup/provision | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/setup/provision b/source4/setup/provision index a9d71cde6b..32edff320c 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -125,7 +125,7 @@ parser.add_option("--ol-mmr-urls", type="string", metavar="LDAPSERVER", parser.add_option("--slapd-path", type="string", metavar="SLAPD-PATH", help="Path to slapd for LDAP backend [e.g.:'/usr/local/libexec/slapd']. Required for Setup with LDAP-Backend. OpenLDAP Version >= 2.4.17 should be used.") parser.add_option("--use-xattrs", type="choice", choices=["yes", "no", "auto"], help="Define if we should use the native fs capabilities or a tdb file for storing attributes likes ntacl, auto tries to make an inteligent guess based on the user rights and system capabilities", default="auto") -parser.add_option("--use-s3fs", action="store_true", help="Use s3fs for the fileserver (default = no)") +parser.add_option("--use-ntvfs", action="store_true", help="Use NTVFS for the fileserver (default = no)") opts = parser.parse_args()[0] @@ -260,7 +260,7 @@ try: backend_type=opts.ldap_backend_type, ldapadminpass=opts.ldapadminpass, ol_mmr_urls=opts.ol_mmr_urls, slapd_path=opts.slapd_path, - useeadb=eadb, next_rid=opts.next_rid, lp=lp, use_ntvfs=(not opts.use_s3fs)) + useeadb=eadb, next_rid=opts.next_rid, lp=lp, use_ntvfs=(opts.use_ntvfs)) except ProvisioningError, e: print str(e) sys.exit(1) |