From c0126c5065b5235dc5020e1740daaaf4b74544ac Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Thu, 9 Mar 2023 16:52:54 +0900 Subject: [PATCH] utils/ipc-sshtunnel: Don't include ipc module The IPC module is included by ipc-sshtunnel, even though the script does not use any IPC functions. This commit removes the ipc module from ipc-sshtunnel's includes. --- utils/ipc-sshtunnel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ipc-sshtunnel.sh b/utils/ipc-sshtunnel.sh index 2e3f568..091f844 100755 --- a/utils/ipc-sshtunnel.sh +++ b/utils/ipc-sshtunnel.sh @@ -164,7 +164,7 @@ main() { exit 1 fi - if ! include "log" "opt" "inst" "ipc"; then + if ! include "log" "opt" "inst"; then exit 1 fi -- 2.47.3