X-Git-Url: http://git.tuebingen.mpg.de/?p=gsu.git;a=blobdiff_plain;f=config;h=4e731afd84e344b5eee6ef61c7f26b345ca5a754;hp=0663e340fdcf26e5824d69ae8821081abcfa9206;hb=97803e0d2487ed9553a508257ce78145e60a409a;hpb=545f2b7b22c800fd4645e5784cd35a318d2e60d6 diff --git a/config b/config index 0663e34..4e731af 100644 --- a/config +++ b/config @@ -1,4 +1,6 @@ #!/bin/bash +# Copyright (C) 2006 Andre Noll +# Licensed under the LGPL, version 3. See COPYING and COPYING.LESSER. # Syntactically check the gsu_options array for errors and parse the config # file. @@ -22,7 +24,7 @@ gsu_check_options() eval "${gsu_options[$i]}" # Check name. It must be non-empty and consist of [a-zA-Z_0-9] - # only. Moreover it must not start with [a-zA-Z]. + # only. Moreover it must start with [a-zA-Z]. ret=-$E_GSU_BAD_CONFIG_VAR result="name: '$name'" # bash's =~ works only for 3.2 and newer, so use grep