diff options
author | Christian Breunig <christian@breunig.cc> | 2023-06-22 22:41:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 22:41:48 +0200 |
commit | b5976afd68b850523335ec64db7e1e59efb8f9fd (patch) | |
tree | c1a2932dbec7dc3e498ad5bd9db2831249c4b1fa /src/op_mode/container.py | |
parent | 2128dc0ddf6b921f440067d7b862f30d9fad0cb2 (diff) | |
parent | 3ec727670de02cac06321719a0323650046d54a1 (diff) | |
download | vyos-1x-b5976afd68b850523335ec64db7e1e59efb8f9fd.tar.gz vyos-1x-b5976afd68b850523335ec64db7e1e59efb8f9fd.zip |
Merge pull request #2038 from c-po/t141-tacacs
T141: add TACACS support
Diffstat (limited to 'src/op_mode/container.py')
-rwxr-xr-x | src/op_mode/container.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/container.py b/src/op_mode/container.py index d48766a0c..7f726f076 100755 --- a/src/op_mode/container.py +++ b/src/op_mode/container.py @@ -83,7 +83,7 @@ def restart(name: str): if rc != 0: print(output) return None - print(f'Container name "{name}" restarted!') + print(f'Container "{name}" restarted!') return output |