From d5a91e8279b1a0edc595d13860cd4b2e4b6615d9 Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Wed, 18 Dec 2024 23:36:26 +0100 Subject: [PATCH] Update checked path for arch-specific boot addons Fixes fcfafacc7cae547645f4d3afb77ea4b972fab64b --- grml-live | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grml-live b/grml-live index 1864d1ca..11078e52 100755 --- a/grml-live +++ b/grml-live @@ -522,9 +522,9 @@ if [ -n "$ZERO_LOGFILE" ] ; then fi # }}} -# Automatically enable NO_ADDONS=1 if addons are not present {{{ -if [ -z "${NO_ADDONS:-}" ] && [ ! -r "$TEMPLATE_DIRECTORY"/boot/addons ] ; then - ewarn "Boot addons not found, (Consider installing package grml-live-addons)" ; eend 0 +# Warn user if addons from grml-live-addons are absent {{{ +if [ -z "${NO_ADDONS:-}" ] && [ ! -r "$TEMPLATE_DIRECTORY"/arch ] ; then + ewarn "Boot addons not found (Consider installing package grml-live-addons)" ; eend 0 fi # }}}