diff options
Diffstat (limited to 'scripts/vyatta-cfg-cmd-wrapper')
-rwxr-xr-x | scripts/vyatta-cfg-cmd-wrapper | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/vyatta-cfg-cmd-wrapper b/scripts/vyatta-cfg-cmd-wrapper index 93acd4f..3b2f040 100755 --- a/scripts/vyatta-cfg-cmd-wrapper +++ b/scripts/vyatta-cfg-cmd-wrapper @@ -212,6 +212,14 @@ case "$1" in /opt/vyatta/sbin/my_delete "${@:2}" RET_STATUS=$? ;; + deactivate) + /opt/vyatta/sbin/vyatta-activate-config.pl deactivate "${@:2}" + RET_STATUS=$? + ;; + activate) + /opt/vyatta/sbin/vyatta-activate-config.pl activate "${@:2}" + RET_STATUS=$? + ;; commit) # debug file /tmp/bar should be deleted before release /opt/vyatta/sbin/my_commit -a >> /tmp/bar |