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
This commit is contained in:
Jens Harbott 2020-10-28 13:05:14 +00:00
parent 7de6e0b2ec
commit 3f28c272d0
3 changed files with 0 additions and 13 deletions

View File

@ -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
# =================

View File

@ -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..."

View File

@ -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
# =================