Changed return of "webrun monls" to show shorter text: "On" or "Off".

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9307 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2011-04-14 00:07:05 +00:00
parent 0fec1bb3a4
commit 81330365cd

View File

@ -967,10 +967,10 @@ sub web_monls(){
my @temp = split(/\s+/, $line);
$ret .= @temp[0];
if('not-monitored' eq @temp[1]){
$ret .= ':Not Monitored;';
$ret .= ':Off;';
}
else{
$ret .= ':Monitored;';
$ret .= ':On;';
}
}
if ('' eq $ret){