From 5cea7e1f720500bd0e0591f17efda164f28bbd1f Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Thu, 2 Feb 2023 15:29:53 +0100 Subject: [PATCH] grml-udev-rebuildfstab: fix typo in checking for configuration file Should be /etc/grml/autoconfig instead of /etc/grml/autconfig of course. :) Thanks: Felix Egli for the bug report and fix Closes: https://github.com/grml/grml/issues/199 --- scripts/grml-udev-rebuildfstab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/grml-udev-rebuildfstab b/scripts/grml-udev-rebuildfstab index fc5e191..3e64e1b 100755 --- a/scripts/grml-udev-rebuildfstab +++ b/scripts/grml-udev-rebuildfstab @@ -32,7 +32,7 @@ echo "$$" > /var/run/rebuildfstab.pid umask 022 -[ -e /etc/grml/autconfig ] && . /etc/grml/autoconfig +[ -e /etc/grml/autoconfig ] && . /etc/grml/autoconfig if ! [ -w "$(dirname $MNTFILE)" ] ; then echo "$0: can not write to $MNTFILE">&2 -- 2.1.4