Changeset 9592 for trunk/MagicSoft/Mars/datacenter/scripts/sourcefile
- Timestamp:
- 06/22/10 14:42:47 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/scripts/sourcefile
r9591 r9592 238 238 { 239 239 getdbsetup 240 needs=`grep "$step[.]Needs:" $steps | sed -e "s/$step[.]Needs://"`241 noderestricted=`grep "$step[.]NodeRestricted:" $steps | sed -e "s/$step[.]NodeRestricted://" -e 's/ //g'`242 prims=( `grep "$step[.]Primaries:" $steps | sed -e "s/$step[.]Primaries://"` )240 needs=`grep "$step[.]Needs:" $steps | grep -v '#' | sed -e "s/$step[.]Needs://"` 241 noderestricted=`grep "$step[.]NodeRestricted:" $steps | grep -v '#' | sed -e "s/$step[.]NodeRestricted://" -e 's/ //g'` 242 prims=( `grep "$step[.]Primaries:" $steps | grep -v '#' | sed -e "s/$step[.]Primaries://"` ) 243 243 # echo " needs: $needs" 244 244 # echo " noderestricted: $noderestricted" … … 250 250 { 251 251 getdbsetup 252 grep $@"[.]Primaries:" $steps | sed -e "s/$@[.]Primaries://"252 grep $@"[.]Primaries:" $steps | grep -v '#' | sed -e "s/$@[.]Primaries://" 253 253 } 254 254 … … 259 259 { 260 260 getdbsetup 261 grep $@"[.]Join:" $steps | sed -e "s/$@[.]Join://"261 grep $@"[.]Join:" $steps | grep -v '#' | sed -e "s/$@[.]Join://" 262 262 } 263 263 … … 268 268 { 269 269 getdbsetup 270 grep $@"[.]SpecialJoin:" $steps | sed -e "s/$@[.]SpecialJoin://"270 grep $@"[.]SpecialJoin:" $steps | grep -v '#' | sed -e "s/$@[.]SpecialJoin://" 271 271 } 272 272
Note:
See TracChangeset
for help on using the changeset viewer.