mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-29 02:15:34 +00:00 
			
		
		
		
	run lsvm when the machine type is s390
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9181 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
		| @@ -896,12 +896,18 @@ function loadNodes(data) { | ||||
| 	 | ||||
| 	// Get index of hcp column | ||||
| 	var i = $.inArray('hcp', sorted); | ||||
| 	var archCol = $.inArray('arch', sorted); | ||||
| 	if (i) { | ||||
| 		// Get hardware control point | ||||
| 		var rows = nodesTable.object().find('tbody tr'); | ||||
| 		var hcps = new Object(); | ||||
| 		for (var j in rows) { | ||||
| 		var rowsNum = rows.size(); | ||||
| 		for (var j = 0; j < rowsNum; j++) { | ||||
| 			var val = rows.eq(j).find('td').eq(i).html(); | ||||
| 			var archval = rows.eq(j).find('td').eq(archCol).html(); | ||||
| 			if (-1 == archval.indexOf('390')){ | ||||
| 				continue; | ||||
| 			} | ||||
| 			hcps[val] = 1; | ||||
| 		} | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user