diff options
Diffstat (limited to 'lib/Vyatta/Config.pm')
-rwxr-xr-x | lib/Vyatta/Config.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Vyatta/Config.pm b/lib/Vyatta/Config.pm index df4d20f..58dd7ea 100755 --- a/lib/Vyatta/Config.pm +++ b/lib/Vyatta/Config.pm @@ -738,8 +738,9 @@ sub parseTmplAll { my %ret = (); my $tpath = $self->getTmplPath(\@pdirs); return unless $tpath; - return undef if (! -r "$tpath/node.def"); - open(my $tmpl, '<', "$tpath/node.def") or return undef; + + open(my $tmpl, '<', "$tpath/node.def") + or return; foreach (<$tmpl>) { if (/^multi:/) { $ret{multi} = 1; |