diff options
author | Douglas Fuller <dfuller@redhat.com> | 2017-07-31 20:23:55 +0200 |
---|---|---|
committer | Patrick Donnelly <pdonnell@redhat.com> | 2018-04-17 20:01:03 +0200 |
commit | ae3992ce4f730979fc3e3a04f3840af3ce206734 (patch) | |
tree | eca4f1ebce7606a7bccaa21ba81de2619b465d53 /src/vstart.sh | |
parent | cephfs: Change behavior of cluster_down flag (diff) | |
download | ceph-ae3992ce4f730979fc3e3a04f3840af3ce206734.tar.xz ceph-ae3992ce4f730979fc3e3a04f3840af3ce206734.zip |
cephfs: Kill allow_multimds
With multi-mds now declared stable, allow_multimds now defaults to 1.
Given the max_mds parameter, it is now redundant. Remove it, leaving a
comment placeholder in the features bitmap.
ceph fs set <fs> allow_multimds is now deprecated and prints a warning
message.
Signed-off-by: Douglas Fuller <dfuller@redhat.com>
Diffstat (limited to 'src/vstart.sh')
-rwxr-xr-x | src/vstart.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vstart.sh b/src/vstart.sh index 878730ae4cf..a372aefc3d8 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -946,7 +946,6 @@ do [ $fs -eq $CEPH_NUM_FS ] && break fs=$(($fs + 1)) if [ "$CEPH_MAX_MDS" -gt 1 ]; then - ceph_adm fs set "cephfs_${name}" allow_multimds true --yes-i-really-mean-it ceph_adm fs set "cephfs_${name}" max_mds "$CEPH_MAX_MDS" fi done |