Age | Commit message (Collapse) | Author |
|
values.
(cherry picked from commit f6d95484a2f04633767409a565debe149ef5f56c)
|
|
(active plus working commited) nodes for comparison.
(cherry picked from commit a09624069795b49d12fd5d4be40dd2eb702b97a4)
|
|
|
|
functional without additional testing.
|
|
Several places in the the listNodes() code would generate warnings
if strict warnings enabled because they had constructs like "$path $node"
which aren't correct if $path was not defined.
|
|
The modules are not perl executables, they are modules.
Fixes lintian warning
|
|
Earlier commit d8922b367e5d45dc8bb2b5dfba59d9473c3403e8 broke
isChanged.
|
|
|
|
No need for if (-d node) { return ...
can just use use return ( -d node )
|
|
Global file handles are trap waiting to happen.
|
|
When returning boolean no need to have
if (expr) return 1; else return 0
Also the proper boolean for false is undef not 0.
|
|
|
|
Using three argument open is safer against global handle clash,
and accidental scripting.
|
|
Save is broken by this, so do in smaller chunks.
|
|
Make this code pass perl critic. Mostly by changing it to return
proper booleans, and use three argument open.
|
|
I wanted to use Vyatta::Config::Output, but the perl part of the
autoconf installer is to stupid to handle directory trees, so had
to limit it to one directory per package. So name should have
been Vyatta::ConfigOutput...
|
|
Use hierarchal directory structure
|