Correct 'ceph osd' cmd with default user.

This commit is contained in:
gardouille 2015-09-01 15:06:57 +02:00
parent 5d404a55fc
commit c4c5955af0
1 changed files with 4 additions and 4 deletions

View File

@ -128,16 +128,16 @@ if [ $(command -v ceph) ]; then
fi
# 3: test OSD
CEPH_OSD_OK=$(ceph osd tree --id ${CEPH_USERNAME} | grep -i -- "host $(hostname)" 2> /dev/null)
CEPH_OSD_OK=$(ceph osd tree | grep -i -- "host $(hostname)" 2> /dev/null)
if [ "${CEPH_OSD_OK}" ]; then
MSG=$(process_info "ceph-osd" "${MSG}")
MSG=$(service_info "6800 6801 6802" "${MSG}")
printf '%b' "\n${MSG}"
# Reset color
printf '%b' "${RESET}\n"
fi
# Reset color
printf '%b' "${RESET}\n"
fi
fi
### FI CEPH