From 7d7c4db8f4592f4e91d5874d40f4da89aed3b36a Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Wed, 12 May 2021 15:21:44 +0200 Subject: [PATCH] Revert "Use -C to invoke tentacle_server when using SSL proxy mode (see also e8e59f3e3e98)." This reverts commit f005b00eb64d715ee6eca5d1ac795a56a1be068c. -C is not a valid option for tentacle_server. --- pandora_agents/unix/pandora_agent | 3 --- 1 file changed, 3 deletions(-) diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index f85a2db72c..4613479ae1 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -2331,9 +2331,6 @@ sub launch_tentacle_proxy () { #Execute tentacle server as a daemon my $new_process = "tentacle_server -a ".$Conf{'proxy_address'}." -p ".$Conf{'proxy_port'}." -b ".$Conf{'server_ip'}." -g ".$Conf{'server_port'}." -c ".$Conf{'proxy_max_connection'}." -t ".$Conf{'proxy_timeout'}; - - $new_process .= ' -C' if ($Conf{'server_ssl'} eq '1'); - log_message ('setup', 'Proxy mode enabled'); exec ($new_process); }