From c2a5957a942c8f6070b8f6ff12764e90c1a4c237 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 2 Dec 2022 09:44:25 +0100 Subject: op-mode: T4767: drop sudo calls It's easier and more obvious if the script is called with sudo itself and not spawning a sudo sessionf or each individual command. --- src/op_mode/generate_ipsec_debug_archive.py | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'src') diff --git a/src/op_mode/generate_ipsec_debug_archive.py b/src/op_mode/generate_ipsec_debug_archive.py index 933dd4e1a..1422559a8 100755 --- a/src/op_mode/generate_ipsec_debug_archive.py +++ b/src/op_mode/generate_ipsec_debug_archive.py @@ -24,20 +24,19 @@ from vyos.util import rc_cmd # define a list of commands that needs to be executed CMD_LIST: list[str] = [ - 'sudo ipsec status', - 'sudo swanctl -L', - 'sudo swanctl -l', - 'sudo swanctl -P', - 'sudo ip x sa show', - 'sudo ip x policy show', - 'sudo ip tunnel show', - 'sudo ip address', - 'sudo ip rule show', - 'sudo ip route | head -100', - 'sudo ip route show table 220' + 'ipsec status', + 'swanctl -L', + 'swanctl -l', + 'swanctl -P', + 'ip x sa show', + 'ip x policy show', + 'ip tunnel show', + 'ip address', + 'ip rule show', + 'ip route | head -100', + 'ip route show table 220' ] -JOURNALCTL_CMD: str = 'sudo journalctl -b -n 10000 /usr/lib/ipsec/charon' - +JOURNALCTL_CMD: str = 'journalctl -b -n 10000 /usr/lib/ipsec/charon' # execute a command and save the output to a file def save_stdout(command: str, file: Path) -> None: -- cgit v1.2.3