Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-07-01 | cli: T6769: fix PR issues: default comment + typo | Kyrylo Yatsenko | |
As suggested in https://github.com/vyos/vyatta-cfg/pull/103 * Get back lost default value of `comment` variable * Fix typo `arugments` -> `arguments` in message | |||
2025-06-23 | cli: T6769: check commit arguments | Kyrylo Yatsenko | |
Check usage: `commit [comment COMMENTTEXT]` Make any other option combination an error and don't pass other arguments to inner scripts. Before this commit command `commit` silently accepted any number of arguments, moreover given `spam1 comment hi1 spam2 comment hi2 spam3` parsing script silently ignored first `comment hi1`, has written `hi2` as comment and passed `spam1 spam2 spam3` to inner script. There are two options for inner scripts: /opt/vyatta/sbin/my_commit Code in vyatta-cfg/src/cli_bin.cpp$ argv is used to check script name and passed to doCommit which ignores it /usr/libexec/vyos/vyconf/bin/vy_commit vyos-1x/python/vyos/vyconf_session.py In similar way argv is used to determine script name Both don't use any arguments, so passing and collecting other arguments seems not needed and confusing | |||
2025-06-10 | T7488: call utility to rollback vpp section of config after failure | John Estabrook | |
2025-05-26 | T7374: allow use of exisiting vyconf replacements for my_* commands | John Estabrook | |
2025-05-12 | T7374: teardown vyconf config session on CLI config session exit | John Estabrook | |
2024-05-27 | cli: T6383: improve completion help for rollback commands | Daniil Baturin | |
2023-12-11 | T5249: Add node rollback-soft | Viacheslav Hletenko | |
``` vyos@r4# rollback-soft Possible completions: <N> Rollback to revision N ``` | |||
2023-08-23 | save-config: T4292: use vyos-save-config.py | John Estabrook | |
2023-04-17 | Merge pull request #56 from erkin/current | Daniil Baturin | |
loadkey: T3506: Remove (what remains of) loadkey | |||
2023-01-18 | config-mgmt: T4942: use vyos-1x config-mgmt scripts | John Estabrook | |
2023-01-18 | loadkey: T3506: Remove (what remains of) loadkey | erkin | |
2022-03-10 | Revert "save-config: T4292: use vyos-save-config.py" | John Estabrook | |
This reverts commit 18e2864769226e39479cf3fc3be2dc5ec67acac1. Revert while investigating failure in vyos-configtest. | |||
2022-03-08 | save-config: T4292: use vyos-save-config.py | John Estabrook | |
2021-10-04 | poweroff: T3888: correction of error message | srividya0208 | |
A proper message is added i.e. Exit from configure mode before shutting down. for the poweroff command when executed from the config mode. | |||
2020-10-17 | Config: T2834: Config rollback function is broken due lack access to the ↵ | Kim Hagen | |
config.boot | |||
2019-10-14 | T1604: run bash builtin "set" as-is in vyatta_cfg_run | jjakob | |
2019-10-01 | T1424: Rewrite the config load script | John Estabrook | |
2019-05-28 | T1397: Rewrite the config merge script | John Estabrook | |
Add support for the config merge script in vyos-1x. | |||
2013-11-16 | Bug #25: Add template for running conf and op mode commands | Daniil Baturin | |
from shell scripts. | |||
2012-09-04 | Revert "If vclient exists, run it" | James Davidson | |
This reverts commit e4630e3becc32a9a0f4fff85511f02691b07ae21. | |||
2012-08-22 | If vclient exists, run it | James Davidson | |
2012-04-26 | Bugfix: 8057 fix call to commit in commit-confirm function | John Southworth | |
2012-02-03 | Add ability to differentiate between node types in help text | John Southworth | |
2011-10-26 | Fix 'show -all' | John Southworth | |
2011-10-21 | Don't show an error message when we can't turn echo on | John Southworth | |
2011-10-20 | Workaround for bug 7570, turning echo on manually when running a templated ↵ | John Southworth | |
command should fix the majority of the problems. It would be better to fix the readline/less interaction in the future | |||
2011-10-17 | Make directory completions, if it is the first word of a run completion, ↵ | John Southworth | |
work so that users can easily find scripts they may be trying to run. | |||
2011-10-10 | Handle operational commands that cannot be run non-interactively from config ↵ | John Southworth | |
mode | |||
2011-10-06 | Fix typo in error message | John Southworth | |
2011-10-04 | Fix some help text, add discard and confirm completion functions, fix ↵ | John Southworth | |
comment completion validation | |||
2011-09-02 | Fix problems when using negative values | John Southworth | |
2011-08-18 | Don't eval the commands just run them; simplify the command wrapper functions | John Southworth | |
2011-08-09 | Fix edit level in path validation function for short commands | John Southworth | |
2011-08-02 | Reorganize the bash completion and command interpreter scripts into easier ↵ | John Southworth | |
to manage chunks. Command interpreter is now in vyatta-cfg-run and common functions have been moved to vyatta-op |