From 3f28c272d0a3ae78329c81227a66c703d6a489d7 Mon Sep 17 00:00:00 2001 From: Jens Harbott Date: Wed, 28 Oct 2020 13:05:14 +0000 Subject: [PATCH] Remove deprecated tail_log function This function has been deprecated for a long time, let's finally remove it. It is only generating a warning anyway. Change-Id: I7bd440adf2ce8283e3ad3d5d09e6b2b877e2b42e --- functions-common | 4 ---- lib/placement | 1 - lib/tls | 8 -------- 3 files changed, 13 deletions(-) diff --git a/functions-common b/functions-common index 547f6df038..13749214ba 100644 --- a/functions-common +++ b/functions-common @@ -1609,10 +1609,6 @@ function service_check { } -function tail_log { - deprecated "With the removal of screen support, tail_log is deprecated and will be removed after Queens" -} - # Plugin Functions # ================= diff --git a/lib/placement b/lib/placement index 2a449bfa90..b7798669a1 100644 --- a/lib/placement +++ b/lib/placement @@ -148,7 +148,6 @@ function start_placement_api { else enable_apache_site placement-api restart_apache_server - tail_log placement-api /var/log/$APACHE_NAME/placement-api.log fi echo "Waiting for placement-api to start..." diff --git a/lib/tls b/lib/tls index 861496d092..b3cc0b4159 100644 --- a/lib/tls +++ b/lib/tls @@ -570,14 +570,6 @@ EOF restart_apache_server } -# Follow TLS proxy -function follow_tls_proxy { - sudo touch /var/log/$APACHE_NAME/tls-proxy_error.log - tail_log tls-error /var/log/$APACHE_NAME/tls-proxy_error.log - sudo touch /var/log/$APACHE_NAME/tls-proxy_access.log - tail_log tls-proxy /var/log/$APACHE_NAME/tls-proxy_access.log -} - # Cleanup Functions # =================