summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-03Remove some XORP-related checks.Daniil Baturin
2013-11-02Remove support for /config on punched card^W^W floppy driveDaniil Baturin
2013-11-010.101.7+daisy7debian/0.101.7+daisy7Daniil Baturin
2013-11-01Force releaseDaniil Baturin
2013-11-010.101.7+daisy6debian/0.101.7+daisy6Daniil Baturin
2013-11-01Replace s/Vyatta/VyOS/ in init scriptDaniil Baturin
2013-06-030.101.7+daisy5debian/0.101.7+daisy5daisyRobert Bays
2013-06-03update init file to require vyatta-unicastRobert Bays
2013-06-010.101.7+daisy4debian/0.101.7+daisy4Robert Bays
2013-06-01allow optional dependency on vyatta-unicastRobert Bays
2013-05-160.101.7+daisy3debian/0.101.7+daisy3James Davidson
2013-05-16Add isMultiNode perl CLI APIJames Davidson
2013-01-070.101.7+daisy2vyatta/VC6.6R1/i386vyatta/VC6.6R1/amd64debian/0.101.7+daisy2James Davidson
2013-01-07Fix compiler warningsJames Davidson
2012-10-130.101.7+daisy1debian/0.101.7+daisy1John Southworth
2012-10-13create daisy branchJohn Southworth
2012-10-120.101.7debian/0.101.7John Southworth
2012-10-12new branchJohn Southworth
2012-09-240.101.6debian/0.101.6James Davidson
2012-09-24Fix get_terminal_size redefinition warningJames Davidson
Also squelch warnings from requiring features.ph (via ioctl.ph). Fixes bug 8387
2012-09-120.101.5debian/0.101.5John Southworth
2012-09-12Fix a few completion bugsJohn Southworth
1. Bugfix 8254: Show the help text first so users don't think there is only one completion for a value when it exists with non-comps 2. Fix config mode inconsistencies with operational mode. Show all values in help text. 3. Fix "exists_only" command handling. Only show nodes that exist when doing completion for show, comment, and delete.
2012-09-040.101.4debian/0.101.4James Davidson
2012-09-04Revert "If vclient exists, run it"James Davidson
This reverts commit e4630e3becc32a9a0f4fff85511f02691b07ae21.
2012-09-040.101.3debian/0.101.3James Davidson
2012-09-04Add cstore_cfg_path_exists_effective C interfaceJames Davidson
2012-08-220.101.2debian/0.101.2James Davidson
2012-08-22If vclient exists, run itJames Davidson
2012-08-220.101.1debian/0.101.1John Southworth
2012-08-22Bugfix 8183: Make sure files in /config are owned by the vyattacfg groupJohn Southworth
2012-08-140.101.0debian/0.101.0Stephen Hemminger
2012-08-14Rewrite interface prefix matchingStephen Hemminger
Bug 8279 Read network device name prefixes from file.
2012-08-010.100.5debian/0.100.5Stephen Hemminger
2012-08-01Add support for vswitchStephen Hemminger
Placeholder for possible future work.
2012-07-130.100.4debian/0.100.4Stephen Hemminger
2012-07-13Fix syslog level for commit messagesStephen Hemminger
Bug 8208 The log level should be notice not alert. Also, the script doesn't depend on anything in Vyatta config or other Vyatta perl libaries.
2012-07-13Optimize commit loggingStephen Hemminger
Bug 8190 Use perl functions rather than going out to shell
2012-07-13Restore original lock file semanticsStephen Hemminger
Don't fail if lock file already exists
2012-07-110.100.3debian/0.100.3Stephen Hemminger
2012-07-11Minor code cleanupStephen Hemminger
1. Make local functions static 2. Use C standard for function with no-args versus old K&R style 3. Make some arguments const
2012-07-11Don't leak file descriptors to actionStephen Hemminger
Bug 8204 Make sure we don't handle unnecessary file descriptors to child processes. This is done by marking file descriptors as close on exec, and closing pipe before exec.
2012-07-11Log node of commit failureStephen Hemminger
Bug 8192 Put message in log about failed node
2012-06-260.100.2debian/0.100.2Stephen Hemminger
2012-06-26Make dataplane matching less restrictiveStephen Hemminger
Anything starting with dp[0-9] is a dataplane interface
2012-06-220.100.1debian/0.100.1Stephen Hemminger
2012-06-22Add new function to find hash of configured addressesStephen Hemminger
Useful to optimize lookup and resolve issue in Bz 8171
2012-06-22More indentation cleanupStephen Hemminger
Use indent of 4
2012-06-22Make indentation consistentStephen Hemminger
Use indent of 4 and break long lines.
2012-06-210.99.88debian/0.99.88Stephen Hemminger
2012-06-21Simplify name matching regexStephen Hemminger
Turns out that [\d]+ is same as \d+ since \d is the class of all digits and [] is the set operator