Check if file exist

This commit is contained in:
Josué Tille 2019-02-16 15:43:09 +01:00
parent 8e8ed22395
commit af82be4ffd
No known key found for this signature in database
GPG key ID: D5E068C6DFA8681D

View file

@ -104,7 +104,7 @@ ynh_systemd_action() {
echo "${action^} the service $service_name" >&2
systemctl $action $service_name \
|| ( journalctl --lines=$length -u $service_name >&2 \
; test -n "$log_path" && echo "--" && tail --lines=$length "$log_path" >&2 \
; test -e "$log_path" && echo "--" && tail --lines=$length "$log_path" >&2 \
; false )
# Start the timeout and try to find line_match
@ -127,7 +127,7 @@ ynh_systemd_action() {
echo "The service $service_name didn't fully started before the timeout." >&2
echo "Please find here an extract of the end of the log of the service $service_name:"
journalctl --lines=$length -u $service_name >&2
test -n "$log_path" && echo "--" && tail --lines=$length "$log_path" >&2
test -e "$log_path" && echo "--" && tail --lines=$length "$log_path" >&2
fi
echo ""