vstart: use "config set" for mgr modules

...instead of pre-mimic config-key set.

Signed-off-by: John Spray <john.spray@redhat.com>
This commit is contained in:
John Spray 2018-04-16 06:01:35 -04:00
parent 54e5cef234
commit 98a3d0e04a

View File

@ -684,7 +684,7 @@ start_mgr() {
EOF
if $with_mgr_dashboard ; then
ceph_adm config-key set mgr/dashboard/$name/server_port $MGR_PORT
ceph_adm config set mgr mgr/dashboard/$name/server_port $MGR_PORT
if [ $mgr -eq 1 ]; then
DASH_URLS="http://$IP:$MGR_PORT"
else
@ -693,7 +693,7 @@ EOF
fi
MGR_PORT=$(($MGR_PORT + 1000))
ceph_adm config-key set mgr/restful/$name/server_port $MGR_PORT
ceph_adm config set mgr mgr/restful/$name/server_port $MGR_PORT
if [ $mgr -eq 1 ]; then
RESTFUL_URLS="https://$IP:$MGR_PORT"
else