diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-02 10:44:45 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-02 10:53:51 +1000 |
commit | 63f2d1060eb889e755078bb2b52dec3909ad4792 (patch) | |
tree | ec0f1bd6db6867ddddb68fa4f30f2757fc777273 /source4/setup | |
parent | 9712912dfcdb7894ab1111bf67572ba0f6d3d5de (diff) | |
download | samba-63f2d1060eb889e755078bb2b52dec3909ad4792.tar.gz samba-63f2d1060eb889e755078bb2b52dec3909ad4792.tar.bz2 samba-63f2d1060eb889e755078bb2b52dec3909ad4792.zip |
s4-provision: Fix --use-s3fs to parse correctly
Diffstat (limited to 'source4/setup')
-rwxr-xr-x | source4/setup/provision | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/setup/provision b/source4/setup/provision index a0e58ec515..a9d71cde6b 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", help="Use s3fs for the fileserver (default = no)") +parser.add_option("--use-s3fs", action="store_true", help="Use s3fs for the fileserver (default = no)") opts = parser.parse_args()[0] |