Skip to content
Snippets Groups Projects
Commit 877b094d authored by David Gasaway's avatar David Gasaway
Browse files

Fixes for configuration files without suffix.

parent e0b43754
No related branches found
No related tags found
1 merge request!16Fixes for configuration files without suffix.
......@@ -588,9 +588,9 @@ for file in $files; do
check_perms ${file%/*} # check containing dir
check_perms $file
suffix="${file##*.}"
base=`basename $file`
if [ "${base:0:1}" == "0" -o "$suffix" == "disabled" ]; then
suffix="${base##*.}"
if [ "${base:0:1}" == "0" -o "$suffix" == "disabled" -o "$suffix" == "$base" ]; then
info "Skipping $file"
continue
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment