From 452fb6ae1a12d0bb8408cf95cbfc8f0096ed4fe8 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 16 May 2008 19:03:18 +0000 Subject: [PATCH] -Fix error message when a template error fails a table lookup to be more helpful git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1431 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/Template.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-xCAT-2.0/xCAT/Template.pm b/perl-xCAT-2.0/xCAT/Template.pm index 910cea69b..73647f691 100755 --- a/perl-xCAT-2.0/xCAT/Template.pm +++ b/perl-xCAT-2.0/xCAT/Template.pm @@ -169,6 +169,7 @@ sub tabdb my $ent; if ($key eq "THISNODE" or $key eq '$NODE') { $ent = $tabh->getNodeAttribs($node,[$field]); + $key="node=$node"; } else { my %kp; foreach (split /,/,$key) { @@ -182,7 +183,7 @@ sub tabdb $tabh->close; unless($ent and defined($ent->{$field})) { unless ($blankok) { - $tmplerr="Unable to find requested $field from $table in this context"; + $tmplerr="Unable to find requested $field from $table, with $key"; } return ""; #return "#TABLEBAD:$table:field $field not found#";