summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-02-18removing incorrect placement of node.tag on firewall/group priorityslioch
2009-02-18fixed vrrp configuration error by placing vrrp under vif after vif interface ↵slioch
is created. this is a nested priority and can potentially cause a problem if the parent fails and the child succeeds.
2009-02-170.14.16debian/0.14.16slioch
2009-02-17added additional debug output and fixed dumping of trans nodes to screen. ↵slioch
added default priorities in priorities file. also fixed bug where interface changes could sweep in portions of failed configuration on error. now fixed.
2009-02-17added dump transaction support to write to stdout rather than redirected ↵slioch
/tmp/cfg-stdout.log file. Enable with -s flag on commit to view local session data and associated actions.
2009-02-17added generic commit failed message on any portion of the configuration ↵slioch
failing. To get additional details (i.e. location of failure and actions associated with nodes) run with the -e flag.
2009-02-16change bgp disable node priorityStephen Hemminger
2009-02-160.14.15debian/0.14.15Stephen Hemminger
2009-02-16Add hook for starting protocolsStephen Hemminger
2009-02-13provide non-default priorities to load-balancing and cluster so theseslioch
nodes can be treated as separate transactions.
2009-02-130.14.14debian/0.14.14slioch
2009-02-12removed priority specification for vrrp. checked with stig and it doesn't ↵slioch
sound like priorities are needed. also priority specified with new cli and vrrp script generated an error on vrrp changes file.
2009-02-12typo on setting firewall group priority.slioch
2009-02-12enable new cli.slioch
2009-02-110.14.13debian/0.14.13Stephen Hemminger
2009-02-11Remove script for vyatta-cfg-reloadStephen Hemminger
Moved it back over to vyatta-cfg-quagga
2009-02-10Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg into jennerStephen Hemminger
2009-02-10Add new option for checking name validityStephen Hemminger
Many templates should allow any known interface type, since interface may be created later. So create some generic hooks for validation.
2009-02-09fixed reversed priority for bgp parameters andslioch
neighbors--order now agrees with configload.pm
2009-02-09Fix Bug 3385 in completion script, thus, also fixing Bug 4120Mohit Mehta
2009-02-080.14.12debian/0.14.12Stephen Hemminger
2009-02-08Change order of config loadStephen Hemminger
OSPF and RIP have to be started before interfaces
2009-02-08Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg into jennerStephen Hemminger
2009-02-06Merge branch 'jenner' of http://git.vyatta.com/vyatta-cfg into jennerStig Thormodsrud
2009-02-06Force firewall group to be configured before firewall.Stig Thormodsrud
2009-02-050.14.11debian/0.14.11Stephen Hemminger
2009-02-05Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg into jennerStephen Hemminger
2009-02-05Merge branch 'jenner' of 192.168.100.1:git/vyatta-cfg into jennerStephen Hemminger
2009-02-05Move config reload from quagga to vyatta-cfgStephen Hemminger
More generally useful, and maintaince is better when closer to home
2009-02-050.14.10debian/0.14.10Stephen Hemminger
2009-02-05Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg into jennerStephen Hemminger
2009-02-05Fix boolean errorStephen Hemminger
Earlier commit d8922b367e5d45dc8bb2b5dfba59d9473c3403e8 broke isChanged.
2009-02-040.14.9debian/0.14.9Bob Gilligan
2009-02-04Add type checking functions for 16- and 32-bit hexadecimal values.Bob Gilligan
2009-02-040.14.8debian/0.14.8Stephen Hemminger
2009-02-04Vyatta::Config - parseTmpl convert to 3 arg openStephen Hemminger
2009-02-04Vyatta::Config - exists simplificationStephen Hemminger
No need for if (-d node) { return ... can just use use return ( -d node )
2009-02-04Vyatta::ConfigOutput - test for exists should not use definedStephen Hemminger
exists returns a boolean so no need to explicitly check for defined.
2009-02-04Vyatta::Config - don't use global handle for opendirStephen Hemminger
Global file handles are trap waiting to happen.
2009-02-04Vyatta::Config - simplify booleanStephen Hemminger
When returning boolean no need to have if (expr) return 1; else return 0 Also the proper boolean for false is undef not 0.
2009-02-04Vyatta::Config - fix perlcritic warnings from dangling returnStephen Hemminger
2009-02-04Vyatta::Config::returnValue - change to three argument openStephen Hemminger
Using three argument open is safer against global handle clash, and accidental scripting.
2009-02-04Revert "Cleanup confg library"Stephen Hemminger
Save is broken by this, so do in smaller chunks.
2009-02-040.14.7debian/0.14.7Stephen Hemminger
2009-02-03Cleanup confg libraryStephen Hemminger
Make this code pass perl critic. Mostly by changing it to return proper booleans, and use three argument open.
2009-02-03Missing semicolonStephen Hemminger
Mistake in earlier change.
2009-02-03Simplify and add strict checksStephen Hemminger
2009-02-03Replace bare file handle with variableStephen Hemminger
PBP recommends using local variable rather than global file handle.
2009-02-03Simplify logicStephen Hemminger
Use || operator
2009-02-03Reindent load config for clarityStephen Hemminger
Run through perltidy.