Skip to content

Commit

Permalink
feat: normalise paths in generates config files
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhodgkiss committed Apr 18, 2024
1 parent d845a5f commit 004b809
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions scripts/config-diff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,23 @@ function main {
clean_copy "$KAYOBE_CONFIG_SOURCE_PATH" "$source_kayobe_config_dir"
clean_copy "$KAYOBE_CONFIG_SOURCE_PATH" "$target_kayobe_config_dir"

function normalize_file_text() {
local file="$1"
local text="$2"

sed -i "s#/tmp/$text/\(.*\)#/tmp/\1#g" "$file"
}

function normalize_files_in_folder() {
local folder="$1"
local text="$2"

# Find all files in the folder and its subfolders and loop through them
find "$folder" -type f -print0 | while IFS= read -r -d '' file; do
normalize_file_text "$file" "$text"
done
}

function generate_target_config {
target_environment_path=/tmp/target-kayobe-env
export ANSIBLE_LOG_PATH=/tmp/target-kayobe.log
Expand All @@ -251,6 +268,7 @@ function main {
redact_config_dir "$target_environment_path"
encrypt_config_dir "$target_environment_path"
generate_config "$target_environment_path" "$target_dir"
normalize_files_in_folder "$target_environment_path" "target-kayobe-env"
}

function generate_source_config {
Expand All @@ -265,6 +283,7 @@ function main {
redact_config_dir "$source_environment_path" "$target_kayobe_config_dir"
encrypt_config_dir "$source_environment_path"
generate_config "$source_environment_path" "$source_dir"
normalize_files_in_folder "$source_environment_path" "source-kayobe-env"
}

generate_target_config $1 >/dev/null 2>&1 &
Expand Down

0 comments on commit 004b809

Please sign in to comment.