summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2010-08-10add functions to shell APIAn-Cheng Huang
2010-07-28add new cstore libraryAn-Cheng Huang
2010-07-16Merge branch 'larkspur' of suva.vyatta.com:/git/vyatta-cfg into larkspurStephen Hemminger
2010-07-16Set executable bit on perl scriptsStephen Hemminger
Useful to run them locally
2010-07-16fix for bug 5794. Comments are not allowed on multinode parent.Michael Larson
2010-07-08fix for bug 5803An-Cheng Huang
* fix positional params handling in shell function. * fix argument handling in perl script.
2010-06-30fix for bug 5762.Michael Larson
2010-06-29add option to save w/o default values.Michael Larson
2010-06-25fix for bug 5717.Michael Larson
2010-06-25correct error message when attempting to deactivate a leaf or multi node.Michael Larson
2010-06-232nd part fix for bug 5729.Michael Larson
2010-06-21Script to automatically update help string for each node.def according=
to the inputs
2010-06-21Script to generate Vyatta command help strings from template files=
2010-06-21fix for bug 5716Michael Larson
2010-06-21fix for bug 5708.Michael Larson
disallow leafs and multis from being deactivated in this release.
2010-06-11add support for bnx2x cards to auto smp affinity scriptsRobert Bays
2010-06-11extension to cmd wrapper.Michael Larson
2010-06-09better location for previous fix to bug 5676Michael Larson
2010-06-07fix for bug 5610 and bug 5655.Michael Larson
2010-06-04remove 'done' from end of activate script.Michael Larson
2010-06-04prevent deactivate from being applied to a created node within a single commit.Michael Larson
this simplfies logic on back end that would need to handle the negation (deactivate) and the addition (create) of a node.
2010-06-03 implemented modified notation for pre-commit activate/deactivate. added ↵Michael Larson
check on modified nodes prior to load. modified active directory check.
2010-05-28Remove single quotes except on leaf-node.Stig Thormodsrud
2010-05-27additional fix for boot loading of deactivate nodes.Michael Larson
2010-05-27fix for loading config for deactivated nodes. allows nested deactivates ↵Michael Larson
within a single set of deactivated commands. only preserves the parent deactivated node in this case.
2010-05-26script that will remove migration comments from configuration file. to ↵Michael Larson
remove these comments from the comments in the action configuration the user should: 1) save their current configuration 2) run this script on the saved configuration 3) reload their configuration (which will strip the migration comments from the active configuration tree)
2010-05-25final fix for 5610. fixes loading where node in active config is deactivated ↵Michael Larson
and is active in loaded configuration.
2010-05-21fix for disable nodes loading (bug 5610). Additional checks added on ↵Michael Larson
configuration of disable nodes. requires vyatta-config-migrate package as well. Additional fix required for loading configuration with deactivated nodes that are activated through the loading process.
2010-05-17trap for illegal characters in comment field being set by user and provide ↵Michael Larson
feedback.
2010-05-14POC implementation of unified enumeration mechanismAn-Cheng Huang
* use "enumeration" template field for both CLI completion and GUI2 enumeration support. * CLI completion now uses enumeration if it exists. * add "existing-interfaces" script as an example.
2010-05-14initial checkin of comment feature for cli.Michael Larson
/* to create a comment */ > comment [PATH-TO-NODE] "my comments" /* to delete a comment */ > comment [PATH-TO-NODE] ""
2010-05-12added additional warning message if the user tries to deactivate a node that ↵Michael Larson
has already been deactivated.
2010-05-071) skip comment and empty lines in priority file;Arthur Xiong
2) remove priority from node.def when priority value is 0 in priority file; 3) copy over comment and empty lines in the beginning of node.def
2010-05-05boot loader support now added. various bug fixes and some small rework.Michael Larson
2010-05-04initial working version of activate and deactivate: load,save,show,commit ↵Michael Larson
supported.
2010-04-28Update to handle none default path to the templates if providedArthur Xiong
2010-04-28Update regex to handle priority line without space(s) and comment in theArthur Xiong
end
2010-04-28A script to automatically update/add priority tag with some value forArthur
each node.def according to the inputs.
2010-04-22support for PARENT reference in priority statements. Example:Michael Larson
priority: PARENT Means that this priority group will adopt the priority value of the parent. And the behavior on deletion of this priority root node will be deleted before the parent. On all other operations this node will be scheduled after the parent. This should fix problems in scheduling creation/deletion orders for priority groups so long as they are located within the same hierarchy. priority.pl has been updated as well.
2010-03-09Bugfix 5021: Make smp_affinity configuration tolerant of failures.Bob Gilligan
2010-03-05add cmd-wrapper move command (for app-mode)An-Cheng Huang
2010-01-19Restore priority commentsStephen Hemminger
Also sort the names when multiple values have same priority.
2009-12-21Rewrite priority script to use File::findStephen Hemminger
Use perl library rather than external find/grep. Cleaner and more efficient.
2009-12-21Move interfaces to vyatta-cfg-system packageStephen Hemminger
All the other templates and scripts related to interfaces are in vyatta-cfg-system
2009-12-16Fix DHCP command handlingStephen Hemminger
This fixes Bug 3917 by checking for interface current state rather than configuration state. Also changed variable names and command arguments to improve clarity. Instead of --op_command="dhcp-renew" use "--dhcp renew".
2009-12-08Bugfix 5143: Fix grep regex for NICs with >= 10 queues.Bob Gilligan
2009-11-14Fix breakage from pervious commit.Stig Thormodsrud
2009-11-05Allow inline comments in config template fields.Bob Gilligan
Also change priority.pl script to display inline comments found in "priority:" fields if they are present.
2009-10-30Sync config file after savingStephen Hemminger
By calling fsync, we can be more assured that file actually makes it to disk.
2009-10-26Generalize handling of multi-queue NICs.Bob Gilligan
Previously the script determined the driver that a NIC was using, then used that to parse the queue names from /proc/interrupts. Now, it determines the naming convention just by looking at the queue names. Now the script should work for all NICs that support one of the two standard naming conventions. Also added some support for single-queue NICs.