Skip to content

Commit

Permalink
vyconf: T6718: use vy_set/delete in configsession and util
Browse files Browse the repository at this point in the history
  • Loading branch information
jestabro committed Oct 26, 2024
1 parent b41c08d commit 6708354
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/vyos/configsession.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
from vyos.utils.dict import dict_to_paths

CLI_SHELL_API = '/bin/cli-shell-api'
SET = '/opt/vyatta/sbin/my_set'
DELETE = '/opt/vyatta/sbin/my_delete'
SET = '/usr/libexec/vyos/vyconf/vy_set'
DELETE = '/usr/libexec/vyos/vyconf/vy_delete'
COMMENT = '/opt/vyatta/sbin/my_comment'
COMMIT = '/opt/vyatta/sbin/my_commit'
DISCARD = '/opt/vyatta/sbin/my_discard'
Expand Down
2 changes: 1 addition & 1 deletion python/vyos/utils/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def install_into_config(conf, config_paths, override_prompt=True):
continue

try:
cmd(f'/opt/vyatta/sbin/my_set {path}')
cmd(f'/usr/libexec/vyos/vyconf/vy_set {path}')
count += 1
except:
failed.append(path)
Expand Down

0 comments on commit 6708354

Please sign in to comment.