From f2694920e9e33698ae837281825503c0e09af46b Mon Sep 17 00:00:00 2001 From: Jian Yu Date: Tue, 22 Feb 2011 19:15:56 +0800 Subject: [PATCH] b=24050 fix lustre_start to start server targets in the order of MGS->MDT->OST(s) i=vitaly.fertman --- lustre/scripts/lustre_start.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lustre/scripts/lustre_start.in b/lustre/scripts/lustre_start.in index 7493bb8..acf63b3 100644 --- a/lustre/scripts/lustre_start.in +++ b/lustre/scripts/lustre_start.in @@ -286,9 +286,6 @@ mass_start() { fi fi - # Start OST(s) - mass_op "start" "ost" || return ${PIPESTATUS[0]} - # Start the MDT service on combo MGS/MDT (with "-o nomgs" option) if $combo_mgs_mdt; then start_service ${MGS_IDX[0]} "-o nomgs" || return ${PIPESTATUS[0]} @@ -297,6 +294,9 @@ mass_start() { # Start MDT(s) mass_op "start" "mdt" || return ${PIPESTATUS[0]} + # Start OST(s) + mass_op "start" "ost" || return ${PIPESTATUS[0]} + verbose_output "Success on all Lustre targets!" return 0 } -- 1.8.3.1