diff options
author | rhatto <rhatto> | 2006-10-09 13:49:49 +0000 |
---|---|---|
committer | rhatto <rhatto> | 2006-10-09 13:49:49 +0000 |
commit | 65fe546d179bcdd85626270d0b9af7732f339c17 (patch) | |
tree | e896c8ac92728b3d7ea8fb5c3c77f2035f9c5daf | |
parent | 23621e74b24374f51dc5cb66702a84eb31d62abf (diff) | |
download | firma-65fe546d179bcdd85626270d0b9af7732f339c17.tar.gz firma-65fe546d179bcdd85626270d0b9af7732f339c17.tar.bz2 |
fix on list permission checking
-rwxr-xr-x | firma | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1366,9 +1366,7 @@ case $# in -a|--admin-task|-p|--process-message) # if config file exists but has wrong permissions or ownership - if [[ -f "$LIST_CONFIG_FILE" ]] && ! CheckPermission $LIST_CONFIG_FILE; then - EXIT_CODE="1" - elif [[ -f "$LIST_CONFIG_FILE" ]]; then + if [[ -f "$LIST_CONFIG_FILE" ]]; then # if the configuration file exists, disable bash's #+sourcepath and evaluate list parameters |