From: Michael Prokop Date: Thu, 2 Feb 2023 14:29:53 +0000 (+0100) Subject: grml-udev-rebuildfstab: fix typo in checking for configuration file X-Git-Tag: v0.6.1~1 X-Git-Url: https://git.grml.org/?a=commitdiff_plain;h=5cea7e1f720500bd0e0591f17efda164f28bbd1f;p=grml-udev-config.git 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 --- 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