diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-06-16 11:20:25 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-06-16 11:20:25 +0200 |
commit | f01860ea8c73c432183e423768205d15e9e7c11c (patch) | |
tree | d02ea4974644c89a60535a3e903d5b6de49ac9dd | |
parent | 303e8cb27560ade4bf0c9e6b9bc453c2f00fe799 (diff) | |
parent | efb598caafc20db278938ff3787e3674467e0663 (diff) | |
download | vyos-1x-f01860ea8c73c432183e423768205d15e9e7c11c.tar.gz vyos-1x-f01860ea8c73c432183e423768205d15e9e7c11c.zip |
Merge branch 'current' of https://github.com/vyos/vyos-1x into current
-rw-r--r-- | op-mode-definitions/version.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/op-mode-definitions/version.xml b/op-mode-definitions/version.xml index 593785f7a..57931fdff 100644 --- a/op-mode-definitions/version.xml +++ b/op-mode-definitions/version.xml @@ -6,19 +6,19 @@ <properties> <help>Show system version information</help> </properties> - <command>${vyos_op_scripts_dir}/version.py</command> + <command>sudo ${vyos_op_scripts_dir}/version.py</command> <children> <leafNode name="funny"> <properties> <help>Show system version and some fun stuff</help> </properties> - <command>${vyos_op_scripts_dir}/version.py --funny</command> + <command>sudo ${vyos_op_scripts_dir}/version.py --funny</command> </leafNode> <leafNode name="all"> <properties> <help>Show system version and versions of all packages</help> </properties> - <command>${vyos_op_scripts_dir}/version.py --all</command> + <command>sudo ${vyos_op_scripts_dir}/version.py --all</command> </leafNode> </children> </node> |