labs: abort on config/scripts.* syntax errors

Instead of skipping only lines starting with a '#' (comments), also skip
empty lines. For all other lines that are not commands, abort with a
syntax error.

Change-Id: I5e326f2eb27e4aa72ff75a211e36bc3b3a78126f
This commit is contained in:
Roger Luethi 2015-01-23 16:28:44 +01:00
parent d99d206262
commit 21188d5dfa

View File

@ -381,11 +381,20 @@ function autostart_from_config {
# are free to mess with the standard file descriptors.
exec 3< "$config_path"
while read -r field_1 field_2 <&3; do
if [[ $field_1 =~ ^# ]]; then
# Skip lines that are commented out
if [[ $field_1 =~ (^$|^#) ]]; then
# Skip empty lines and lines that are commented out
continue
elif [ "$field_1" == "cmd" ]; then
command_from_config $field_2
else
# Syntax error
echo -n >&2 "ERROR in $config_file: '$field_1"
if [ -n "$field_2" ]; then
echo >&2 " $field_2'"
else
echo >&2 "'"
fi
exit 1
fi
done
}