From 4047121435724a1b08c2da2a9167d366adf03afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Val=C3=AD=C4=8Dek=20=28YCNet=29?= Date: Wed, 20 Jan 2021 12:56:17 +0100 Subject: [PATCH] Comment scripts --- startup-logcat | 2 ++ startup-logdump | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/startup-logcat b/startup-logcat index 24851b8..4b7994f 100755 --- a/startup-logcat +++ b/startup-logcat @@ -1,5 +1,7 @@ #!/bin/bash +# prepares persmissions for files & starts frontail to tail log files + # make parallel citation shut up mkdir -p ~executor/.parallel touch ~executor/.parallel/will-cite diff --git a/startup-logdump b/startup-logdump index 5833353..372f4ec 100755 --- a/startup-logdump +++ b/startup-logdump @@ -1,4 +1,7 @@ #!/bin/bash -journalctl -f > /var/log/syslog +# dump journalctl to /var/log/syslog +# logrotate is handled itself + +exec journalctl -f > /var/log/syslog