diff options
author | Christian Breunig <christian@breunig.cc> | 2023-01-25 20:47:49 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-01-25 20:47:49 +0100 |
commit | 8a84cdb451b6568afb2b95ea8f66beb2983ba114 (patch) | |
tree | fa1b6966049fd6e22ec7df9b0a47c487b131e165 /op-mode-definitions | |
parent | 20dfd05bf67dcb6437df8440e401286255426356 (diff) | |
download | vyos-1x-8a84cdb451b6568afb2b95ea8f66beb2983ba114.tar.gz vyos-1x-8a84cdb451b6568afb2b95ea8f66beb2983ba114.zip |
op-mode: container: T4947: there is no standardised vyos.opmode in equuleus
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/container.xml.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/op-mode-definitions/container.xml.in b/op-mode-definitions/container.xml.in index 786bd66d3..78b3b7335 100644 --- a/op-mode-definitions/container.xml.in +++ b/op-mode-definitions/container.xml.in @@ -100,13 +100,13 @@ <properties> <help>Show containers</help> </properties> - <command>sudo ${vyos_op_scripts_dir}/container.py show_container</command> + <command>sudo podman ps --all</command> <children> <leafNode name="image"> <properties> <help>Show container image</help> </properties> - <command>sudo ${vyos_op_scripts_dir}/container.py show_image</command> + <command>sudo podman image ls</command> </leafNode> <tagNode name="log"> <properties> @@ -121,7 +121,7 @@ <properties> <help>Show available container networks</help> </properties> - <command>sudo ${vyos_op_scripts_dir}/container.py show_network</command> + <command>sudo podman network ls</command> </leafNode> </children> </node> @@ -149,7 +149,7 @@ <path>container name</path> </completionHelp> </properties> - <command>sudo ${vyos_op_scripts_dir}/container.py restart --name="$3"</command> + <command>sudo podman restart "$3"</command> </tagNode> </children> </node> |