grml-udev-rebuildfstab: fix typo in checking for configuration file
authorMichael Prokop <mika@grml.org>
Thu, 2 Feb 2023 14:29:53 +0000 (15:29 +0100)
committerMichael Prokop <mika@grml.org>
Thu, 2 Feb 2023 14:30:41 +0000 (15:30 +0100)
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

index fc5e191..3e64e1b 100755 (executable)
@@ -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