mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Do not pipe into less
This commit is contained in:
parent
9f3bf11fd0
commit
9052bb0b78
1 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ ynh_systemd_action() {
|
||||||
|
|
||||||
echo "${action^} the service $service_name" >&2
|
echo "${action^} the service $service_name" >&2
|
||||||
systemctl $action $service_name \
|
systemctl $action $service_name \
|
||||||
|| ( journalctl --lines=$length -u $service_name >&2 \
|
|| ( journalctl --no-pager --lines=$length -u $service_name >&2 \
|
||||||
; test -e "$log_path" && echo "--" && tail --lines=$length "$log_path" >&2 \
|
; test -e "$log_path" && echo "--" && tail --lines=$length "$log_path" >&2 \
|
||||||
; false )
|
; false )
|
||||||
|
|
||||||
|
@ -129,7 +129,7 @@ ynh_systemd_action() {
|
||||||
then
|
then
|
||||||
echo "The service $service_name didn't fully started before the timeout." >&2
|
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:"
|
echo "Please find here an extract of the end of the log of the service $service_name:"
|
||||||
journalctl --lines=$length -u $service_name >&2
|
journalctl --no-pager --lines=$length -u $service_name >&2
|
||||||
test -e "$log_path" && echo "--" && tail --lines=$length "$log_path" >&2
|
test -e "$log_path" && echo "--" && tail --lines=$length "$log_path" >&2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue