1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lstu_ynh.git synced 2024-09-03 19:36:12 +02:00

update helper

This commit is contained in:
Kayou 2019-02-14 23:37:31 +01:00
parent 910740418c
commit 04fa86cd7e
No known key found for this signature in database
GPG key ID: 823A2CBE071D3126

View file

@ -43,7 +43,7 @@ ynh_systemd_action() {
# Following the starting of the app in its log
if [ "$log_path" == "systemd" ] ; then
# Read the systemd journal
journalctl -u $service_name -f --since=-45 > "$templog" &
journalctl --unit=$service_name --follow --since=-0 --quiet > "$templog" &
else
# Read the specified log file
tail -F -n0 "$log_path" > "$templog" &