Drop support for bootlogd
authorMichael Prokop <mika@grml.org>
Mon, 6 Feb 2023 14:55:05 +0000 (15:55 +0100)
committerMichael Prokop <mika@grml.org>
Mon, 6 Feb 2023 14:55:05 +0000 (15:55 +0100)
We no longer support non-systemd init systems like file-rc, one can run
`journalctl -b` nowadays. There's no point in supporting bootlogd given
that we don't even ship it any longer.

Thanks: Roland Sommer for reporting

autoconfig.functions

index e659549..891242e 100755 (executable)
@@ -212,12 +212,8 @@ fi
 config_log(){
 if checkbootparam 'log' || checkbootparam 'debug' ; then
    export DEBUG="/tmp/grml.log.`date +%Y%m%d`"
-   touch $DEBUG
-   einfo "Bootparameter log found. Log files: ${DEBUG} and /var/log/boot"
-   eindent
-     einfo "Starting bootlogd." # known to be *very* unreliable :(
-     bootlogd -r -c >>$DEBUG 2>&1 ; eend $?
-   eoutdent
+   touch "${DEBUG}"
+   einfo "Bootparameter log found, debug log file from grml-autoconfig available at '${DEBUG}'"
 else
    DEBUG="/dev/null"
 fi