Compare commits
No commits in common. "cf87cbeb0ffe61ae5f60763182fc3789e52292c8" and "9b249b99e38a5018946dbfb265c6b47901dcfa05" have entirely different histories.
cf87cbeb0f
...
9b249b99e3
@ -9,10 +9,7 @@ checkApplicationsConfigFilesMissingVariables()
|
|||||||
app=$(basename "$live" .config)
|
app=$(basename "$live" .config)
|
||||||
remote="$install_containers_dir$app/$app.config"
|
remote="$install_containers_dir$app/$app.config"
|
||||||
reconcileConfigFile "$live" "$remote"
|
reconcileConfigFile "$live" "$remote"
|
||||||
# 2>/dev/null: before the docker-type config loads (early install) runFileOp
|
done < <(runFileOp find "$containers_dir" -maxdepth 2 -type f -name '*.config' ! -name '*.bak')
|
||||||
# falls back to the manager, which can't list the container-owned containers/
|
|
||||||
# dir — harmless "Permission denied" on a best-effort reconcile (no apps yet).
|
|
||||||
done < <(runFileOp find "$containers_dir" -maxdepth 2 -type f -name '*.config' ! -name '*.bak' 2>/dev/null)
|
|
||||||
|
|
||||||
isSuccessful "Application config reconciliation completed."
|
isSuccessful "Application config reconciliation completed."
|
||||||
}
|
}
|
||||||
|
|||||||
@ -61,12 +61,7 @@ sourceScanFiles()
|
|||||||
source "$file"
|
source "$file"
|
||||||
# echo "$load_type FILE $file"
|
# echo "$load_type FILE $file"
|
||||||
fi
|
fi
|
||||||
# 2>/dev/null: early in an install the docker-type config isn't loaded
|
done < <($scan_op find "$folder_dir" -maxdepth 3 -type d \( -name 'resources' \) -prune -o -type f -name "$file_pattern" -print0)
|
||||||
# yet, so runFileOp falls back to the manager, which can't list the
|
|
||||||
# container-owned containers/ dir — a harmless "Permission denied" on a
|
|
||||||
# best-effort scan (no app configs exist yet). Suppress that noise; the
|
|
||||||
# -print0 output still flows.
|
|
||||||
done < <($scan_op find "$folder_dir" -maxdepth 3 -type d \( -name 'resources' \) -prune -o -type f -name "$file_pattern" -print0 2>/dev/null)
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Load the categories from the file into an array
|
# Load the categories from the file into an array
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user