From 9c4a6913833f105dc6581fc7aa9f737714aa9686 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Wed, 26 Sep 2012 19:41:00 +0200 Subject: [PATCH] Source /etc/grml/grml-live.conf only if it can be read We no longer depend on the file /etc/grml/grml-live.conf as we keep system defaults in the program nowadays, so do not fail if file can not be read. Thanks: Evgeni Golov for reporting --- grml-live | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/grml-live b/grml-live index 4a68301..a7db0d8 100755 --- a/grml-live +++ b/grml-live @@ -147,7 +147,14 @@ fi # source main configuration file: LIVE_CONF=/etc/grml/grml-live.conf -. $LIVE_CONF +if ! [ -r "$LIVE_CONF" ] ; then + log "Confuguration file $LIVE_CONF can not be read, ignoring" +else + log "Sourcing configuration file $LIVE_CONF" + einfo "Sourcing configuration file $LIVE_CONF" + . $LIVE_CONF + eend $? +fi # }}} # umount all directories {{{ -- 2.1.4